Home
last modified time | relevance | path

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

/freebsd/lib/libc/stdio/
H A Dprintfcommon.h104 #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; in io_pad()
H A Dxprintf.c84 #define PADSIZE 16 macro
85 static char blanks[PADSIZE] =
87 static char zeroes[PADSIZE] =
150 while (n > PADSIZE) { in __printf_pad()
151 ret += __printf_puts(io, with, PADSIZE); in __printf_pad()
152 n -= PADSIZE; in __printf_pad()
/freebsd/contrib/sendmail/libsm/
H A Dvfprintf.c211 #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; \