Lines Matching defs:t
52 static Type *new_type (Typetype t);
475 Type *t = new_type(TOctetString);
476 t->range = $3;
478 TE_EXPLICIT, t);
955 Type *t;
957 t = oldtype;
960 t = new_type (TTag);
962 t->tag.tagclass = tagclass;
963 t->tag.tagvalue = tagvalue;
964 t->tag.tagenv = tagenv;
965 t->subtype = oldtype;
966 return t;
993 Type *t = ecalloc(1, sizeof(*t));
994 t->type = tt;
995 return t;
1006 static void fix_labels2(Type *t, const char *prefix);
1023 static void fix_labels2(Type *t, const char *prefix)
1025 for(; t; t = t->subtype)
1026 fix_labels1(t->members, prefix);