HomeSort by relevance Sort by last modified time
    Searched refs:PADSIZE (Results 1 - 4 of 4) sorted by null

  /bionic/libc/stdio/
printf_common.h 154 while (n > PADSIZE) { \
155 PRINT(with, PADSIZE); \
156 n -= PADSIZE; \
vfprintf.cpp 102 * Choose PADSIZE to trade efficiency vs. size. If larger printf
103 * fields occur frequently, increase PADSIZE and make the initialisers
106 #define PADSIZE 16 /* pad chunk size */
107 static CHAR_TYPE blanks[PADSIZE] = {
110 static CHAR_TYPE zeroes[PADSIZE] = {
vfwprintf.cpp 102 * Choose PADSIZE to trade efficiency vs. size. If larger printf
103 * fields occur frequently, increase PADSIZE and make the initialisers
106 #define PADSIZE 16 /* pad chunk size */
107 static CHAR_TYPE blanks[PADSIZE] = {
110 static CHAR_TYPE zeroes[PADSIZE] = {
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfwprintf.c 688 * Choose PADSIZE to trade efficiency vs. size. If larger printf
689 * fields occur frequently, increase PADSIZE and make the initialisers
692 #define PADSIZE 16 /* pad chunk size */
693 static CHAR_T blanks[PADSIZE] =
695 static CHAR_T zeroes[PADSIZE] =
733 while (n > PADSIZE) { \
734 PRINT(with, PADSIZE); \
735 n -= PADSIZE; \
    [all...]

Completed in 374 milliseconds