Searched refs: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); 1144 int tablesize; /* current size of type table */ local 1155 ((nextarg >= tablesize) ? \ 1156 __grow_type_table(&typetable, &tablesize) : 0, \ 1199 tablesize = STATIC_ARG_TBL_SIZE; 1489 __grow_type_table(unsigned char **typetable, int *tablesize) argument 1492 int newsize = *tablesize * 2; 1497 if (*tablesize == STATIC_ARG_TBL_SIZE) { 1502 bcopy(oldtable, *typetable, *tablesize); 1508 memmove(new, *typetable, *tablesize); [all...] |
H A D | vfwprintf.c | 89 static int __grow_type_table(unsigned char **typetable, int *tablesize); 1128 int tablesize; /* current size of type table */ local 1137 ((nextarg >= tablesize) ? \ 1138 __grow_type_table(&typetable, &tablesize) : 0, \ 1181 tablesize = STATIC_ARG_TBL_SIZE; 1455 __grow_type_table(unsigned char **typetable, int *tablesize) argument 1458 int newsize = *tablesize * 2; 1463 if (*tablesize == STATIC_ARG_TBL_SIZE) { 1468 bcopy(oldtable, *typetable, *tablesize); 1474 memmove(new, *typetable, *tablesize); [all...] |
Completed in 8 milliseconds