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

/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dprintfcommon.h95 * Choose PADSIZE to trade efficiency vs. size. If larger printf
96 * fields occur frequently, increase PADSIZE and make the initialisers
99 #define PADSIZE 16 /* pad chunk size */ macro
100 static const CHAR blanks[PADSIZE] =
102 static const CHAR zeroes[PADSIZE] =
115 n = (howmany >= PADSIZE) ? PADSIZE : howmany;
H A Dxprintf.c119 #define PADSIZE 16 macro
120 static char blanks[PADSIZE] =
122 static char zeroes[PADSIZE] =
187 while (n > PADSIZE) {
188 ret += __printf_puts(io, with, PADSIZE);
189 n -= PADSIZE;
/macosx-10.10/sudo-73/src/
H A Dsnprintf.c310 * Choose PADSIZE to trade efficiency vs. size. If larger printf
311 * fields occur frequently, increase PADSIZE and make the initialisers
314 #define PADSIZE 16 /* pad chunk size */ macro
315 static char blanks[PADSIZE] =
317 static char zeroes[PADSIZE] =
345 while (n > PADSIZE) { \
346 PRINT(pstr, PADSIZE); \
347 n -= PADSIZE; \
/macosx-10.10/ncurses-44/ncurses/c++/
H A Ddemo.cc338 const int PADSIZE = 200;
343 NCursesFramedPad FP(P, PADSIZE, PADSIZE);
345 for (int i=0; i < PADSIZE; i++) {
346 for (int j=0; j < PADSIZE; j++) {
/macosx-10.10/ruby-106/ruby/
H A Dvsnprintf.c579 * Choose PADSIZE to trade efficiency vs. size. If larger printf
580 * fields occur frequently, increase PADSIZE and make the initializers
583 #define PADSIZE 16 /* pad chunk size */ macro
584 static const char blanks[PADSIZE] =
586 static const char zeroes[PADSIZE] =
605 while (n > PADSIZE) { \
606 PRINT((with), PADSIZE); \
607 n -= PADSIZE; \

Completed in 142 milliseconds