Home | History | Annotate | Download | only in stdio

Lines Matching refs:tablesize

56 static int __grow_type_table(unsigned char **typetable, int *tablesize);
883 int tablesize; /* current size of type table */
893 ((nextarg >= tablesize) ? \
894 __grow_type_table(&typetable, &tablesize) : 0, \
935 tablesize = STATIC_ARG_TBL_SIZE;
1197 __grow_type_table(unsigned char **typetable, int *tablesize)
1200 int newsize = *tablesize * 2;
1202 if (*tablesize == STATIC_ARG_TBL_SIZE) {
1207 memcpy( *typetable, oldtable, *tablesize);
1212 memmove(new, *typetable, *tablesize);
1213 munmap(*typetable, *tablesize);
1217 memset(*typetable + *tablesize, T_UNUSED, (newsize - *tablesize));
1219 *tablesize = newsize;