Lines Matching refs:FormatFlags

132 …erDesc, unsigned v, unsigned Base, unsigned NumDigits, unsigned FieldWidth, unsigned FormatFlags) {  in _PrintUnsigned()  argument
156 if ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == 0u) { in _PrintUnsigned()
158 if (((FormatFlags & FORMAT_FLAG_PAD_ZERO) == FORMAT_FLAG_PAD_ZERO) && (NumDigits == 0u)) { in _PrintUnsigned()
204 if ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == FORMAT_FLAG_LEFT_JUSTIFY) { in _PrintUnsigned()
222 …pBufferDesc, int v, unsigned Base, unsigned NumDigits, unsigned FieldWidth, unsigned FormatFlags) { in _PrintInt() argument
239 …if ((FieldWidth > 0u) && ((v < 0) || ((FormatFlags & FORMAT_FLAG_PRINT_SIGN) == FORMAT_FLAG_PRINT_… in _PrintInt()
246 …if ((((FormatFlags & FORMAT_FLAG_PAD_ZERO) == 0u) || (NumDigits != 0u)) && ((FormatFlags & FORMAT_… in _PrintInt()
264 } else if ((FormatFlags & FORMAT_FLAG_PRINT_SIGN) == FORMAT_FLAG_PRINT_SIGN) { in _PrintInt()
273 …if (((FormatFlags & FORMAT_FLAG_PAD_ZERO) == FORMAT_FLAG_PAD_ZERO) && ((FormatFlags & FORMAT_FLAG_… in _PrintInt()
288 _PrintUnsigned(pBufferDesc, (unsigned)v, Base, NumDigits, FieldWidth, FormatFlags); in _PrintInt()
322 unsigned FormatFlags; in SEGGER_RTT_vprintf() local
342 FormatFlags = 0u; in SEGGER_RTT_vprintf()
347 case '-': FormatFlags |= FORMAT_FLAG_LEFT_JUSTIFY; sFormat++; break; in SEGGER_RTT_vprintf()
348 case '0': FormatFlags |= FORMAT_FLAG_PAD_ZERO; sFormat++; break; in SEGGER_RTT_vprintf()
349 case '+': FormatFlags |= FORMAT_FLAG_PRINT_SIGN; sFormat++; break; in SEGGER_RTT_vprintf()
350 case '#': FormatFlags |= FORMAT_FLAG_ALTERNATE; sFormat++; break; in SEGGER_RTT_vprintf()
408 _PrintInt(&BufferDesc, v, 10u, NumDigits, FieldWidth, FormatFlags); in SEGGER_RTT_vprintf()
412 _PrintUnsigned(&BufferDesc, (unsigned)v, 10u, NumDigits, FieldWidth, FormatFlags); in SEGGER_RTT_vprintf()
417 _PrintUnsigned(&BufferDesc, (unsigned)v, 16u, NumDigits, FieldWidth, FormatFlags); in SEGGER_RTT_vprintf()