Lines Matching refs:tablesize
840 int tablesize; /* current size of type table */ local
846 ((nextarg >= tablesize) ? \
847 (sm_grow_type_table_x(&typetable, &tablesize), 0) : 0, \
882 tablesize = STATIC_ARG_TBL_SIZE;
1098 sm_grow_type_table_x(typetable, tablesize) in sm_grow_type_table_x() argument
1100 int *tablesize;
1103 int newsize = *tablesize * 2;
1105 if (*tablesize == STATIC_ARG_TBL_SIZE)
1109 (void) memmove(*typetable, oldtable, *tablesize);
1116 (void) memset(&typetable [*tablesize], T_UNUSED,
1117 (newsize - *tablesize));
1119 *tablesize = newsize;