Lines Matching refs:NumDigits
1076 …NTF_DESC * pBufferDesc, unsigned int v, unsigned int Base, unsigned int NumDigits, unsigned int Fi… in _PrintUnsigned() argument
1094 if (NumDigits > Width) { in _PrintUnsigned()
1095 Width = NumDigits; in _PrintUnsigned()
1102 if (((FormatFlags & FORMAT_FLAG_PAD_ZERO) == FORMAT_FLAG_PAD_ZERO) && (NumDigits == 0u)) { in _PrintUnsigned()
1119 …if (NumDigits > 1u) { // User specified a min number of digits to print? => Make sure we loo… in _PrintUnsigned()
1120 NumDigits--; in _PrintUnsigned()
1167 …SVIEW_PRINTF_DESC * pBufferDesc, int v, unsigned int Base, unsigned int NumDigits, unsigned int Fi… in _PrintInt() argument
1181 if (NumDigits > Width) { in _PrintInt()
1182 Width = NumDigits; in _PrintInt()
1191 …if ((((FormatFlags & FORMAT_FLAG_PAD_ZERO) == 0u) || (NumDigits != 0u)) && ((FormatFlags & FORMAT_… in _PrintInt()
1213 …= FORMAT_FLAG_PAD_ZERO) && ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == 0u) && (NumDigits == 0u)) { in _PrintInt()
1224 _PrintUnsigned(pBufferDesc, (unsigned int)v, Base, NumDigits, FieldWidth, FormatFlags); in _PrintInt()
1244 unsigned int NumDigits; in _VPrintTarget() local
1304 NumDigits = 0u; in _VPrintTarget()
1314 NumDigits = NumDigits * 10u + ((unsigned int)c - '0'); 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()