Home
last modified time | relevance | path

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

/bionic/libc/stdio/
Dvfprintf.cpp214 flags |= LADJUST; in FUNCTION_NAME()
660 if ((flags & (LADJUST | ZEROPAD)) == 0) PAD(width - realsz, blanks); in FUNCTION_NAME()
670 if ((flags & (LADJUST | ZEROPAD)) == ZEROPAD) PAD(width - realsz, zeroes); in FUNCTION_NAME()
708 if (flags & LADJUST) PAD(width - realsz, blanks); in FUNCTION_NAME()
Dvfwprintf.cpp217 flags |= LADJUST; in FUNCTION_NAME()
638 if ((flags & (LADJUST | ZEROPAD)) == 0) PAD(width - realsz, blanks); in FUNCTION_NAME()
648 if ((flags & (LADJUST | ZEROPAD)) == ZEROPAD) PAD(width - realsz, zeroes); in FUNCTION_NAME()
686 if (flags & LADJUST) PAD(width - realsz, blanks); in FUNCTION_NAME()
Dprintf_common.h187 #define LADJUST 0x0004 /* left adjustment */ macro