Home
last modified time | relevance | path

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

/openthread-2.7.6/third_party/jlink/SEGGER_RTT_V640/RTT/
DSEGGER_RTT_printf.c144 unsigned Div; in _PrintUnsigned() local
192 Div = v / Digit; in _PrintUnsigned()
193 …if (Div < Base) { // Is our divider big enough to extract the highest digit from value? => … in _PrintUnsigned()
203 Div = v / Digit; in _PrintUnsigned()
204 v -= Div * Digit; in _PrintUnsigned()
205 _StoreChar(pBufferDesc, _aV2C[Div]); in _PrintUnsigned()