Home | History | Annotate | Download | only in stdio

Lines Matching defs:tablesize

111 static int __grow_type_table(unsigned char** typetable, int* tablesize);
318 int tablesize; /* current size of type table */
327 ((nextarg >= tablesize) ? __grow_type_table(&typetable, &tablesize) : 0, \
383 tablesize = STATIC_ARG_TBL_SIZE;
658 static int __grow_type_table(unsigned char** typetable, int* tablesize) {
660 int new_size = *tablesize * 2;
664 if (*tablesize == STATIC_ARG_TBL_SIZE) {
669 bcopy(old_table, *typetable, *tablesize);
675 memmove(new_table, *typetable, *tablesize);
676 munmap(*typetable, *tablesize);
679 memset(*typetable + *tablesize, T_UNUSED, (new_size - *tablesize));
681 *tablesize = new_size;