/src/usr.bin/xlint/lint2/ |
lint2.h | 64 struct lint2_type *t_subt; /*- element type (if ARRAY), member in struct:lint2_type
|
chk.c | 254 t1 = (tp1 = TP(def->s_type)->t_subt)->t_tspec; 256 tp2 = TP(call->f_type)->t_subt; 311 const type_t *xt1 = is_func ? tp1->t_subt : tp1; 312 const type_t *xt2 = is_func ? tp2->t_subt : tp2; 725 t2 = tp->t_subt->t_tspec; 891 t2 = tp->t_subt->t_tspec; 907 } else if (tp->t_subt->t_const) { 1005 } else if (tp->t_subt->t_subt->t_tspec!=VOID) { 1314 tp1 = tp1->t_subt; [all...] |
emit2.c | 103 tp = tp->t_subt;
|
read.c | 688 tp->t_subt = TP(inptype(cp, &cp)); 691 tp->t_subt = TP(inptype(cp, &cp)); 709 tp->t_subt = TP(inptype(cp, &cp));
|
/src/usr.bin/xlint/lint1/ |
tree.c | 599 tp2->t_subt = tp; 613 tp2->t_subt = tp; 623 return type_name(call->func->tn_type->t_subt); 630 if (tn->tn_type->t_subt->t_tspec != CHAR) 653 tspec_t t = ln->tn_type->t_subt->t_tspec; 835 tp->t_subt = gettyp(lit->data != NULL ? CHAR : WCHAR_TSPEC); 1085 tn->u.ops.left->tn_type->t_subt == tn->tn_type) { 1348 ntn = build_op(nop, sys, ntn->tn_type->t_subt, ntn, NULL); 1356 * Get the size in bytes of type tp->t_subt, as a constant expression of type 1364 tp = tp->t_subt; [all...] |
emit1.c | 137 tp = tp->t_subt; 310 outtype(fsym->s_type->t_subt);
|
decl.c | 821 tp = tp->t_subt; 857 tp = tp->t_subt; 923 t == FUNC ? *tpp : (*tpp)->t_subt, PTR); 977 tpp = &tp->t_subt; 1252 tpp = &(*tpp)->t_subt; 1260 tpp = &(*tpp)->t_subt; 1288 tp->t_subt = gettyp(CHAR); 1313 tpp = &(*tpp)->t_subt; 1445 tpp = &(*tpp)->t_subt; 1988 bool rval = dsym->s_type->t_subt->t_tspec != VOID [all...] |
func.c | 231 if (fsym->s_type->t_subt->t_tspec != VOID && 232 is_incomplete(fsym->s_type->t_subt)) { 327 if (funcsym->s_type->t_subt->t_tspec == VOID) 919 ln->tn_type = expr_unqualified_type(funcsym->s_type->t_subt); 957 if (tn != NULL && funcsym->s_type->t_subt->t_tspec == VOID) { 963 if (tn == NULL && funcsym->s_type->t_subt->t_tspec != VOID
|
init.c | 163 tspec_t lst = ltp->t_subt->t_tspec; 164 tspec_t rst = rn->tn_type->t_subt->t_tspec; 305 return tp->t_subt;
|
lint1.h | 159 struct lint1_type *t_subt; /*- element type (if ARRAY), member in struct:lint1_type
|
cgram.y | 2165 && $1->u.call->func->tn_type->t_subt->t_noreturn)
|
/src/usr.bin/xlint/common/ |
tyname.c | 194 buf_add(buf, type_name(tp->t_subt)); 245 buf_add(buf, type_name(tp->t_subt)); 287 buf_add(&buf, type_name(tp->t_subt));
|