OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PADSIZE
(Results
1 - 2
of
2
) sorted by null
/bionic/libc/upstream-openbsd/lib/libc/stdio/
vfprintf.c
335
* Choose
PADSIZE
to trade efficiency vs. size. If larger printf
336
* fields occur frequently, increase
PADSIZE
and make the initialisers
339
#define
PADSIZE
16 /* pad chunk size */
340
static char blanks[
PADSIZE
] =
342
static char zeroes[
PADSIZE
] =
364
while (n >
PADSIZE
) { \
365
PRINT(with,
PADSIZE
); \
366
n -=
PADSIZE
; \
[
all
...]
vfwprintf.c
337
* Choose
PADSIZE
to trade efficiency vs. size. If larger printf
338
* fields occur frequently, increase
PADSIZE
and make the initialisers
341
#define
PADSIZE
16 /* pad chunk size */
342
static wchar_t blanks[
PADSIZE
] =
344
static wchar_t zeroes[
PADSIZE
] =
362
while (n >
PADSIZE
) { \
363
PRINT(with,
PADSIZE
); \
364
n -=
PADSIZE
; \
[
all
...]
Completed in 491 milliseconds