Home | History | Annotate | Download | only in stdio

Lines Matching defs:tablesize

113 static int __grow_type_table(unsigned char** typetable, int* tablesize);
320 int tablesize; /* current size of type table */
329 ((nextarg >= tablesize) ? __grow_type_table(&typetable, &tablesize) : 0, \
385 tablesize = STATIC_ARG_TBL_SIZE;
644 static int __grow_type_table(unsigned char** typetable, int* tablesize) {
646 int new_size = *tablesize * 2;
650 if (*tablesize == STATIC_ARG_TBL_SIZE) {
655 bcopy(old_table, *typetable, *tablesize);
661 memmove(new_table, *typetable, *tablesize);
662 munmap(*typetable, *tablesize);
665 memset(*typetable + *tablesize, T_UNUSED, (new_size - *tablesize));
667 *tablesize = new_size;