Lines Matching refs:lll
1050 long long lll = ll; in _wndoprnt() local
1053 if (lll < 10LL) { in _wndoprnt()
1055 if (lll != 0LL || !(flagword & DOTSEEN)) in _wndoprnt()
1056 *--bp = (wchar_t)lll + L'0'; in _wndoprnt()
1058 if (lll != 0LL || !(flagword & DOTSEEN)) in _wndoprnt()
1059 *--bp = (char)lll + '0'; in _wndoprnt()
1063 tll = lll; in _wndoprnt()
1064 lll /= 10; in _wndoprnt()
1067 (tll - lll * 10 + '0'); in _wndoprnt()
1070 (tll - lll * 10 + '0'); in _wndoprnt()
1072 } while (lll >= 10); in _wndoprnt()
1074 *--bp = (wchar_t)lll + '0'; in _wndoprnt()
1076 *--bp = (char)lll + '0'; in _wndoprnt()
1218 long long lll = ll; in _wndoprnt() local
1220 if (lll == 0LL) { in _wndoprnt()
1226 *--bp = tab[(ssize_t)(lll & mradix)]; in _wndoprnt()
1227 lll = ((lll >> 1) & ~HIBITLL) \ in _wndoprnt()
1229 } while (lll != 0LL); in _wndoprnt()