Lines Matching refs:FormatFlags
1076 … v, unsigned int Base, unsigned int NumDigits, unsigned int FieldWidth, unsigned int FormatFlags) { in _PrintUnsigned() argument
1100 if ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == 0u) { in _PrintUnsigned()
1102 if (((FormatFlags & FORMAT_FLAG_PAD_ZERO) == FORMAT_FLAG_PAD_ZERO) && (NumDigits == 0u)) { in _PrintUnsigned()
1141 if ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == FORMAT_FLAG_LEFT_JUSTIFY) { in _PrintUnsigned()
1167 … v, unsigned int Base, unsigned int NumDigits, unsigned int FieldWidth, unsigned int FormatFlags) { in _PrintInt() argument
1184 …if ((FieldWidth > 0u) && ((v < 0) || ((FormatFlags & FORMAT_FLAG_PRINT_SIGN) == FORMAT_FLAG_PRINT_… in _PrintInt()
1191 …if ((((FormatFlags & FORMAT_FLAG_PAD_ZERO) == 0u) || (NumDigits != 0u)) && ((FormatFlags & FORMAT_… in _PrintInt()
1205 } else if ((FormatFlags & FORMAT_FLAG_PRINT_SIGN) == FORMAT_FLAG_PRINT_SIGN) { in _PrintInt()
1213 …if (((FormatFlags & FORMAT_FLAG_PAD_ZERO) == FORMAT_FLAG_PAD_ZERO) && ((FormatFlags & FORMAT_FLAG_… in _PrintInt()
1224 _PrintUnsigned(pBufferDesc, (unsigned int)v, Base, NumDigits, FieldWidth, FormatFlags); in _PrintInt()
1245 unsigned int FormatFlags; in _VPrintTarget() local
1276 FormatFlags = 0u; in _VPrintTarget()
1281 case '-': FormatFlags |= FORMAT_FLAG_LEFT_JUSTIFY; sFormat++; break; in _VPrintTarget()
1282 case '0': FormatFlags |= FORMAT_FLAG_PAD_ZERO; sFormat++; break; in _VPrintTarget()
1283 case '+': FormatFlags |= FORMAT_FLAG_PRINT_SIGN; sFormat++; break; in _VPrintTarget()
1284 case '#': FormatFlags |= FORMAT_FLAG_ALTERNATE; sFormat++; break; in _VPrintTarget()
1342 _PrintInt(&BufferDesc, v, 10u, NumDigits, FieldWidth, FormatFlags); in _VPrintTarget()
1346 _PrintUnsigned(&BufferDesc, (unsigned int)v, 10u, NumDigits, FieldWidth, FormatFlags); in _VPrintTarget()
1351 _PrintUnsigned(&BufferDesc, (unsigned int)v, 16u, NumDigits, FieldWidth, FormatFlags); in _VPrintTarget()