Searched refs:typeid (Results 1 – 1 of 1) sorted by relevance
129 enum typeid { enum150 static int __grow_type_table(int, enum typeid **, int *);1599 enum typeid *typetable; /* table of types */ in __find_arguments()1600 enum typeid stattypetable [STATIC_ARG_TBL_SIZE]; in __find_arguments()1940 __grow_type_table (int nextarg, enum typeid **typetable, int *tablesize) in __grow_type_table()1942 enum typeid *const oldtable = *typetable; in __grow_type_table()1944 enum typeid *newtable; in __grow_type_table()1950 if ((newtable = malloc(newsize * sizeof(enum typeid))) == NULL) in __grow_type_table()1952 memcpy(newtable, oldtable, oldsize * sizeof(enum typeid)); in __grow_type_table()1954 newtable = realloc(oldtable, newsize * sizeof(enum typeid)); in __grow_type_table()