Home
last modified time | relevance | path

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

/bionic/libc/stdio/
Dprintf_common.h113 static int __grow_type_table(unsigned char** typetable, int* tablesize);
320 int tablesize; /* current size of type table */ in __find_arguments() local
329 ((nextarg >= tablesize) ? __grow_type_table(&typetable, &tablesize) : 0, \ in __find_arguments()
385 tablesize = STATIC_ARG_TBL_SIZE; in __find_arguments()
644 static int __grow_type_table(unsigned char** typetable, int* tablesize) { in __grow_type_table() argument
646 int new_size = *tablesize * 2; in __grow_type_table()
650 if (*tablesize == STATIC_ARG_TBL_SIZE) { in __grow_type_table()
655 bcopy(old_table, *typetable, *tablesize); in __grow_type_table()
661 memmove(new_table, *typetable, *tablesize); in __grow_type_table()
662 munmap(*typetable, *tablesize); in __grow_type_table()
[all …]