Lines Matching refs:FieldWidth

136 …* pBufferDesc, unsigned v, unsigned Base, unsigned NumDigits, unsigned FieldWidth, unsigned Format…  in _PrintUnsigned()  argument
161 if (FieldWidth != 0u) { in _PrintUnsigned()
167 while ((FieldWidth != 0u) && (Width < FieldWidth)) { in _PrintUnsigned()
168 FieldWidth--; in _PrintUnsigned()
209 if (FieldWidth != 0u) { in _PrintUnsigned()
210 while ((FieldWidth != 0u) && (Width < FieldWidth)) { in _PrintUnsigned()
211 FieldWidth--; in _PrintUnsigned()
226 …DESC * pBufferDesc, int v, unsigned Base, unsigned NumDigits, unsigned FieldWidth, unsigned Format… in _PrintInt() argument
243 …if ((FieldWidth > 0u) && ((v < 0) || ((FormatFlags & FORMAT_FLAG_PRINT_SIGN) == FORMAT_FLAG_PRINT_… in _PrintInt()
244 FieldWidth--; in _PrintInt()
251 if (FieldWidth != 0u) { in _PrintInt()
252 while ((FieldWidth != 0u) && (Width < FieldWidth)) { in _PrintInt()
253 FieldWidth--; in _PrintInt()
278 if (FieldWidth != 0u) { in _PrintInt()
279 while ((FieldWidth != 0u) && (Width < FieldWidth)) { in _PrintInt()
280 FieldWidth--; in _PrintInt()
292 _PrintUnsigned(pBufferDesc, (unsigned)v, Base, NumDigits, FieldWidth, FormatFlags); in _PrintInt()
327 unsigned FieldWidth; in SEGGER_RTT_vprintf() local
361 FieldWidth = 0u; in SEGGER_RTT_vprintf()
368 FieldWidth = (FieldWidth * 10u) + ((unsigned)c - '0'); in SEGGER_RTT_vprintf()
412 _PrintInt(&BufferDesc, v, 10u, NumDigits, FieldWidth, FormatFlags); in SEGGER_RTT_vprintf()
416 _PrintUnsigned(&BufferDesc, (unsigned)v, 10u, NumDigits, FieldWidth, FormatFlags); in SEGGER_RTT_vprintf()
421 _PrintUnsigned(&BufferDesc, (unsigned)v, 16u, NumDigits, FieldWidth, FormatFlags); in SEGGER_RTT_vprintf()