Searched refs:PADSIZE (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dvfprintf.c335 * 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 */ macro
340 static char blanks[PADSIZE] =
342 static char zeroes[PADSIZE] =
364 while (n > PADSIZE) { \
365 PRINT(with, PADSIZE); \
366 n -= PADSIZE; \
H A Dvfwprintf.c337 * 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 */ macro
342 static wchar_t blanks[PADSIZE] =
344 static wchar_t zeroes[PADSIZE] =
362 while (n > PADSIZE) { \
363 PRINT(with, PADSIZE); \
364 n -= PADSIZE; \

Completed in 63 milliseconds