Home
last modified time | relevance | path

Searched refs:tablesize (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dvfprintf.c92 static int __grow_type_table(unsigned char **typetable, int *tablesize);
1149 int tablesize; /* current size of type table */ in __find_arguments() local
1160 ((nextarg >= tablesize) ? \ in __find_arguments()
1161 __grow_type_table(&typetable, &tablesize) : 0, \ in __find_arguments()
1204 tablesize = STATIC_ARG_TBL_SIZE; in __find_arguments()
1496 __grow_type_table(unsigned char **typetable, int *tablesize) in __grow_type_table() argument
1499 int newsize = *tablesize * 2; in __grow_type_table()
1504 if (*tablesize == STATIC_ARG_TBL_SIZE) { in __grow_type_table()
1509 bcopy(oldtable, *typetable, *tablesize); in __grow_type_table()
1515 memmove(new, *typetable, *tablesize); in __grow_type_table()
[all …]
Dvfwprintf.c89 static int __grow_type_table(unsigned char **typetable, int *tablesize);
1118 int tablesize; /* current size of type table */ in __find_arguments() local
1127 ((nextarg >= tablesize) ? \ in __find_arguments()
1128 __grow_type_table(&typetable, &tablesize) : 0, \ in __find_arguments()
1171 tablesize = STATIC_ARG_TBL_SIZE; in __find_arguments()
1445 __grow_type_table(unsigned char **typetable, int *tablesize) in __grow_type_table() argument
1448 int newsize = *tablesize * 2; in __grow_type_table()
1453 if (*tablesize == STATIC_ARG_TBL_SIZE) { in __grow_type_table()
1458 bcopy(oldtable, *typetable, *tablesize); in __grow_type_table()
1464 memmove(new, *typetable, *tablesize); in __grow_type_table()
[all …]