OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tablesize
(Results
1 - 2
of
2
) sorted by null
/bionic/libc/stdio/
printf_common.h
113
static int __grow_type_table(unsigned char** typetable, int*
tablesize
);
320
int
tablesize
; /* current size of type table */
local
329
((nextarg >=
tablesize
) ? __grow_type_table(&typetable, &
tablesize
) : 0, \
385
tablesize
= STATIC_ARG_TBL_SIZE;
644
static int __grow_type_table(unsigned char** typetable, int*
tablesize
) {
646
int new_size = *
tablesize
* 2;
650
if (*
tablesize
== STATIC_ARG_TBL_SIZE) {
655
bcopy(old_table, *typetable, *
tablesize
);
661
memmove(new_table, *typetable, *
tablesize
);
[
all
...]
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfwprintf.c
1601
int
tablesize
; \/* current size of type table *\/
local
[
all
...]
Completed in 232 milliseconds