Lines Matching defs:SubType
150 typedef struct SubType {
156 struct SubType *prev; /* old type */
157 struct SubType *next; /* poped type (to avoid re-allocating) */
158 } SubType;
174 SubType st_head, *st;
209 st_head.next = (SubType *) 0;
313 SubType *newst;
315 newst = (SubType *) alloc(
316 sizeof(SubType), ATEMP);
317 newst->next = (SubType *) 0;