Home
last modified time | relevance | path

Searched refs:LADJUST (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/stdio/
Dvfwprintf.cpp201 flags |= LADJUST; in FUNCTION_NAME()
603 if ((flags & (LADJUST | ZEROPAD)) == 0) PAD(width - realsz, blanks); in FUNCTION_NAME()
613 if ((flags & (LADJUST | ZEROPAD)) == ZEROPAD) PAD(width - realsz, zeroes); in FUNCTION_NAME()
650 if (flags & LADJUST) PAD(width - realsz, blanks); in FUNCTION_NAME()
Dvfprintf.cpp212 flags |= LADJUST; in FUNCTION_NAME()
614 if ((flags & (LADJUST | ZEROPAD)) == 0) PAD(width - realsz, blanks); in FUNCTION_NAME()
624 if ((flags & (LADJUST | ZEROPAD)) == ZEROPAD) PAD(width - realsz, zeroes); in FUNCTION_NAME()
661 if (flags & LADJUST) PAD(width - realsz, blanks); in FUNCTION_NAME()
Dprintf_common.h187 #define LADJUST 0x0004 /* left adjustment */ macro