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

/barrelfish-master/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;

Completed in 55 milliseconds