Lines Matching refs:tablesize
839 int tablesize; /* current size of type table */ local
845 ((nextarg >= tablesize) ? \
846 (sm_grow_type_table_x(&typetable, &tablesize), 0) : 0, \
881 tablesize = STATIC_ARG_TBL_SIZE;
1096 sm_grow_type_table_x(typetable, tablesize) in sm_grow_type_table_x() argument
1098 int *tablesize;
1101 int newsize = *tablesize * 2;
1103 if (*tablesize == STATIC_ARG_TBL_SIZE)
1107 (void) memmove(*typetable, oldtable, *tablesize);
1114 (void) memset(&typetable [*tablesize], T_UNUSED,
1115 (newsize - *tablesize));
1117 *tablesize = newsize;