/src/usr.bin/xlint/lint2/ |
chk.c | 72 static bool types_compatible(const type_t *, const type_t *, 257 eq = types_compatible(tp1, tp2, 313 bool eq = types_compatible(xt1, xt2, 475 if (types_compatible(arg1, arg2, true, promote, asgn, &dowarn) && 1158 eq = types_compatible(xt1 = *ap1, xt2 = *ap2, 1203 types_compatible(const type_t *tp1, const type_t *tp2, function in typeref:typename:bool 1338 if (!types_compatible(*a1, *a2, true, false, false, dowarn))
|
/src/usr.bin/xlint/lint1/ |
externs1.h | 259 bool types_compatible(const type_t *, const type_t *, bool, bool, bool *);
|
decl.c | 157 * types_compatible, which simply tests whether 'tp1->u.sou == 1923 if (!types_compatible(arg->s_type, parg->s_type, 2152 if (!types_compatible(rdsym->s_type, dsym->s_type, 2228 if (!types_compatible(p1->s_type, p2->s_type, 2263 types_compatible(const type_t *tp1, const type_t *tp2, function in typeref:typename:bool 2518 if (!types_compatible(old_tp, proto_tp, true, true, &dowarn)) { 2519 if (types_compatible(old_tp, proto_tp, true, false, &dowarn)) { 2684 bool compatible = types_compatible(esym->s_type, dsym->s_type,
|
tree.c | 865 types_compatible(sel->ga_arg, expr->tn_type, 1663 types_compatible(ntp->t_subt, otp->t_subt, 1745 types_compatible(ln->tn_type, rn->tn_type, false, false, NULL) && 2196 if (!types_compatible(atp, btp, false, false, &w) && !w) 2576 !types_compatible(ltp->t_subt, rtp->t_subt, true, false, NULL)) { 2742 if (!types_compatible(ltp->t_subt, rtp->t_subt, true, false, NULL)) { 2812 if (!types_compatible(lstp, rstp, true, false, NULL)) 3060 types_compatible(lstp, rstp, 3813 types_compatible(struct_tp->u.sou->sou_first_member->s_type, 3830 if (types_compatible(mem->s_type, mtp, true, false, NULL) [all...] |
init.c | 586 if (types_compatible(ltp, rn->tn_type, true, false, NULL))
|