Home
last modified time | relevance | path

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

/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dvfwprintf.c341 #define PADSIZE 16 /* pad chunk size */ in __vfwprintf() macro
342 static wchar_t blanks[PADSIZE] = in __vfwprintf()
344 static wchar_t zeroes[PADSIZE] = in __vfwprintf()
362 while (n > PADSIZE) { \ in __vfwprintf()
363 PRINT(with, PADSIZE); \ in __vfwprintf()
364 n -= PADSIZE; \ in __vfwprintf()
Dvfprintf.c343 #define PADSIZE 16 /* pad chunk size */ in __vfprintf() macro
344 static char blanks[PADSIZE] = in __vfprintf()
346 static char zeroes[PADSIZE] = in __vfprintf()
368 while (n > PADSIZE) { \ in __vfprintf()
369 PRINT(with, PADSIZE); \ in __vfprintf()
370 n -= PADSIZE; \ in __vfprintf()