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

/freebsd-11-stable/lib/libc/stdio/
H A Dprintfcommon.h100 * Choose PADSIZE to trade efficiency vs. size. If larger printf
101 * fields occur frequently, increase PADSIZE and make the initialisers
104 #define PADSIZE 16 /* pad chunk size */ macro
105 static const CHAR blanks[PADSIZE] =
107 static const CHAR zeroes[PADSIZE] =
121 n = (howmany >= PADSIZE) ? PADSIZE : howmany;
H A Dxprintf.c84 #define PADSIZE 16 macro
85 static char blanks[PADSIZE] =
87 static char zeroes[PADSIZE] =
150 while (n > PADSIZE) {
151 ret += __printf_puts(io, with, PADSIZE);
152 n -= PADSIZE;
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dvfprintf.c207 ** Choose PADSIZE to trade efficiency vs. size. If larger printf
208 ** fields occur frequently, increase PADSIZE and make the initialisers
211 #define PADSIZE 16 /* pad chunk size */ macro
212 static char blanks[PADSIZE] =
214 static char zeroes[PADSIZE] =
236 while (n > PADSIZE) { \
237 PRINT(with, PADSIZE); \
238 n -= PADSIZE; \

Completed in 115 milliseconds