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

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vsnprintf_ss.c 81 #define LADJUST 0x004 /* left adjustment */
203 flags |= LADJUST;
428 * points to a string which (if not flags&LADJUST) should be
435 * floating precision; finally, if LADJUST, pad with blanks.
450 if ((flags & (LADJUST|ZEROPAD)) == 0) {
465 if ((flags & (LADJUST|ZEROPAD)) == ZEROPAD) {
480 if (flags & LADJUST) {
vfwprintf.c 595 #define LADJUST 0x004 /* left adjustment */
915 flags |= LADJUST;
    [all...]
  /bionic/libc/stdio/
vfprintf.cpp 211 flags |= LADJUST;
610 * points to a string which (if not flags&LADJUST) should be
617 * floating precision; finally, if LADJUST, pad with blanks.
627 if ((flags & (LADJUST | ZEROPAD)) == 0) PAD(width - realsz, blanks);
637 if ((flags & (LADJUST | ZEROPAD)) == ZEROPAD) PAD(width - realsz, zeroes);
674 if (flags & LADJUST) PAD(width - realsz, blanks);
vfwprintf.cpp 200 flags |= LADJUST;
591 * points to a string which (if not flags&LADJUST) should be
598 * floating precision; finally, if LADJUST, pad with blanks.
608 if ((flags & (LADJUST | ZEROPAD)) == 0) PAD(width - realsz, blanks);
618 if ((flags & (LADJUST | ZEROPAD)) == ZEROPAD) PAD(width - realsz, zeroes);
655 if (flags & LADJUST) PAD(width - realsz, blanks);
printf_common.h 185 #define LADJUST 0x0004 /* left adjustment */

Completed in 84 milliseconds