Lines Matching refs:pBufferDesc
136 static void _PrintUnsigned(SEGGER_RTT_PRINTF_DESC * pBufferDesc, unsigned v, unsigned Base, unsigne… in _PrintUnsigned() argument
169 _StoreChar(pBufferDesc, c); in _PrintUnsigned()
170 if (pBufferDesc->ReturnValue < 0) { in _PrintUnsigned()
176 if (pBufferDesc->ReturnValue >= 0) { in _PrintUnsigned()
199 _StoreChar(pBufferDesc, _aV2C[Div]); in _PrintUnsigned()
200 if (pBufferDesc->ReturnValue < 0) { in _PrintUnsigned()
212 _StoreChar(pBufferDesc, ' '); in _PrintUnsigned()
213 if (pBufferDesc->ReturnValue < 0) { in _PrintUnsigned()
226 static void _PrintInt(SEGGER_RTT_PRINTF_DESC * pBufferDesc, int v, unsigned Base, unsigned NumDigit… in _PrintInt() argument
254 _StoreChar(pBufferDesc, ' '); in _PrintInt()
255 if (pBufferDesc->ReturnValue < 0) { in _PrintInt()
264 if (pBufferDesc->ReturnValue >= 0) { in _PrintInt()
267 _StoreChar(pBufferDesc, '-'); in _PrintInt()
269 _StoreChar(pBufferDesc, '+'); in _PrintInt()
273 if (pBufferDesc->ReturnValue >= 0) { in _PrintInt()
281 _StoreChar(pBufferDesc, '0'); in _PrintInt()
282 if (pBufferDesc->ReturnValue < 0) { in _PrintInt()
288 if (pBufferDesc->ReturnValue >= 0) { in _PrintInt()
292 _PrintUnsigned(pBufferDesc, (unsigned)v, Base, NumDigits, FieldWidth, FormatFlags); in _PrintInt()