Symbol: types_compatible
usr.bin/xlint/lint1/cgram.y
642
&& types_compatible($1.expr_type, $3, true, false, NULL);
usr.bin/xlint/lint1/decl.c
1921
if (!types_compatible(arg->s_type, parg->s_type,
usr.bin/xlint/lint1/decl.c
2152
if (!types_compatible(rdsym->s_type, dsym->s_type,
usr.bin/xlint/lint1/decl.c
2228
if (!types_compatible(p1->s_type, p2->s_type,
usr.bin/xlint/lint1/decl.c
2518
if (!types_compatible(old_tp, proto_tp, true, true, &dowarn)) {
usr.bin/xlint/lint1/decl.c
2519
if (types_compatible(old_tp, proto_tp, true, false, &dowarn)) {
usr.bin/xlint/lint1/decl.c
2684
bool compatible = types_compatible(esym->s_type, dsym->s_type,
usr.bin/xlint/lint1/externs1.h
259
bool types_compatible(const type_t *, const type_t *, bool, bool, bool *);
usr.bin/xlint/lint1/init.c
576
if (types_compatible(ltp, rn->tn_type, true, false, NULL))
usr.bin/xlint/lint1/tree.c
1819
types_compatible(ntp->t_subt, otp->t_subt,
usr.bin/xlint/lint1/tree.c
1901
types_compatible(ln->tn_type, rn->tn_type, false, false, NULL) &&
usr.bin/xlint/lint1/tree.c
2359
if (!types_compatible(atp, btp, false, false, &w) && !w)
usr.bin/xlint/lint1/tree.c
2739
!types_compatible(ltp->t_subt, rtp->t_subt, true, false, NULL)) {
usr.bin/xlint/lint1/tree.c
2905
if (!types_compatible(ltp->t_subt, rtp->t_subt, true, false, NULL)) {
usr.bin/xlint/lint1/tree.c
2975
if (!types_compatible(lstp, rstp, true, false, NULL))
usr.bin/xlint/lint1/tree.c
3223
types_compatible(lstp, rstp,
usr.bin/xlint/lint1/tree.c
3975
types_compatible(struct_tp->u.sou->sou_first_member->s_type,
usr.bin/xlint/lint1/tree.c
3992
if (types_compatible(mem->s_type, mtp, true, false, NULL))
usr.bin/xlint/lint1/tree.c
4026
types_compatible(nmem->s_type, omem->s_type,
usr.bin/xlint/lint1/tree.c
4592
if (types_compatible(m->s_type, otn->tn_type,
usr.bin/xlint/lint1/tree.c
4674
&& types_compatible(tp, tn->tn_type, false, false, NULL))
usr.bin/xlint/lint1/tree.c
4728
if (!types_compatible(tp, tn->tn_type,
usr.bin/xlint/lint2/chk.c
1158
eq = types_compatible(xt1 = *ap1, xt2 = *ap2,
usr.bin/xlint/lint2/chk.c
1338
if (!types_compatible(*a1, *a2, true, false, false, dowarn))
usr.bin/xlint/lint2/chk.c
257
eq = types_compatible(tp1, tp2,
usr.bin/xlint/lint2/chk.c
313
bool eq = types_compatible(xt1, xt2,
usr.bin/xlint/lint2/chk.c
475
if (types_compatible(arg1, arg2, true, promote, asgn, &dowarn) &&
usr.bin/xlint/lint2/chk.c
72
static bool types_compatible(const type_t *, const type_t *,