Home
last modified time | relevance | path

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

/bionic/libc/stdio/
Dvfprintf.c56 static int __grow_type_table(unsigned char **typetable, int *tablesize);
882 int tablesize; /* current size of type table */ in __find_arguments() local
892 ((nextarg >= tablesize) ? \ in __find_arguments()
893 __grow_type_table(&typetable, &tablesize) : 0, \ in __find_arguments()
934 tablesize = STATIC_ARG_TBL_SIZE; in __find_arguments()
1196 __grow_type_table(unsigned char **typetable, int *tablesize) in __grow_type_table() argument
1199 int newsize = *tablesize * 2; in __grow_type_table()
1201 if (*tablesize == STATIC_ARG_TBL_SIZE) { in __grow_type_table()
1206 memcpy( *typetable, oldtable, *tablesize); in __grow_type_table()
1211 memmove(new, *typetable, *tablesize); in __grow_type_table()
[all …]