Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/stdio/
Dvfwprintf.c425 #define PADSIZE 16 /* pad chunk size */ in VFWPRINTF() macro
426 static const wchar_t blanks[PADSIZE] = in VFWPRINTF()
429 static const wchar_t zeroes[PADSIZE] = in VFWPRINTF()
470 while (n > PADSIZE) { \ in VFWPRINTF()
471 PRINT (with, PADSIZE); \ in VFWPRINTF()
472 n -= PADSIZE; \ in VFWPRINTF()
498 while (n > PADSIZE) { \ in VFWPRINTF()
499 PRINT (with, PADSIZE); \ in VFWPRINTF()
500 n -= PADSIZE; \ in VFWPRINTF()
Dvfprintf.c458 #define PADSIZE 16 /* pad chunk size */ in VFPRINTF() macro
459 static const char blanks[PADSIZE] = in VFPRINTF()
461 static const char zeroes[PADSIZE] = in VFPRINTF()
484 while (n > PADSIZE) { \ in VFPRINTF()
485 PRINT (with, PADSIZE); \ in VFPRINTF()
486 n -= PADSIZE; \ in VFPRINTF()
512 while (n > PADSIZE) { \ in VFPRINTF()
513 PRINT (with, PADSIZE); \ in VFPRINTF()
514 n -= PADSIZE; \ in VFPRINTF()