Searched defs:tablesize (Results 1 - 2 of 2) sorted by relevance
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
H A D | vfprintf.c | 92 static int __grow_type_table(unsigned char **typetable, int *tablesize); 1149 int tablesize; /* current size of type table */ local 1160 ((nextarg >= tablesize) ? \ 1161 __grow_type_table(&typetable, &tablesize) : 0, \ 1204 tablesize = STATIC_ARG_TBL_SIZE; 1496 __grow_type_table(unsigned char **typetable, int *tablesize) argument 1499 int newsize = *tablesize * 2; 1504 if (*tablesize == STATIC_ARG_TBL_SIZE) { 1509 bcopy(oldtable, *typetable, *tablesize); 1515 memmove(new, *typetable, *tablesize); [all...] |
H A D | vfwprintf.c | 89 static int __grow_type_table(unsigned char **typetable, int *tablesize); 1118 int tablesize; /* current size of type table */ local 1127 ((nextarg >= tablesize) ? \ 1128 __grow_type_table(&typetable, &tablesize) : 0, \ 1171 tablesize = STATIC_ARG_TBL_SIZE; 1445 __grow_type_table(unsigned char **typetable, int *tablesize) argument 1448 int newsize = *tablesize * 2; 1453 if (*tablesize == STATIC_ARG_TBL_SIZE) { 1458 bcopy(oldtable, *typetable, *tablesize); 1464 memmove(new, *typetable, *tablesize); [all...] |
Completed in 26 milliseconds