Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/app_trace/sys_view/SEGGER/
DSEGGER_SYSVIEW.c864 … v, unsigned int Base, unsigned int NumDigits, unsigned int FieldWidth, unsigned int FormatFlags) { in _PrintUnsigned() argument
888 if ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == 0u) { in _PrintUnsigned()
890 if (((FormatFlags & FORMAT_FLAG_PAD_ZERO) == FORMAT_FLAG_PAD_ZERO) && (NumDigits == 0u)) { in _PrintUnsigned()
929 if ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == FORMAT_FLAG_LEFT_JUSTIFY) { in _PrintUnsigned()
955 … v, unsigned int Base, unsigned int NumDigits, unsigned int FieldWidth, unsigned int FormatFlags) { in _PrintInt() argument
972 …if ((FieldWidth > 0u) && ((v < 0) || ((FormatFlags & FORMAT_FLAG_PRINT_SIGN) == FORMAT_FLAG_PRINT_… in _PrintInt()
979 …if ((((FormatFlags & FORMAT_FLAG_PAD_ZERO) == 0u) || (NumDigits != 0u)) && ((FormatFlags & FORMAT_… in _PrintInt()
993 } else if ((FormatFlags & FORMAT_FLAG_PRINT_SIGN) == FORMAT_FLAG_PRINT_SIGN) { in _PrintInt()
1001 …if (((FormatFlags & FORMAT_FLAG_PAD_ZERO) == FORMAT_FLAG_PAD_ZERO) && ((FormatFlags & FORMAT_FLAG_… in _PrintInt()
1012 _PrintUnsigned(pBufferDesc, (unsigned int)v, Base, NumDigits, FieldWidth, FormatFlags); in _PrintInt()
[all …]