Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dstringobject.c4014 int numnondigits, skipped, filled; in _PyString_FormatLong() local
4054 numnondigits = sign; in _PyString_FormatLong()
4073 numnondigits += 2; in _PyString_FormatLong()
4076 numdigits = len - numnondigits - skipped; in _PyString_FormatLong()
4083 len = numnondigits + filled + numdigits; in _PyString_FormatLong()
4104 for (i = numnondigits; --i >= 0;) in _PyString_FormatLong()
4106 buf += numnondigits; in _PyString_FormatLong()
4107 s += numnondigits + skipped; in _PyString_FormatLong()
/external/python/cpython3/Objects/
Dunicodeobject.c14155 int numnondigits = 0; in _PyUnicode_FormatLong() local
14177 numnondigits = 2; in _PyUnicode_FormatLong()
14182 numnondigits = 2; in _PyUnicode_FormatLong()
14209 numnondigits += sign; in _PyUnicode_FormatLong()
14210 numdigits = len - numnondigits; in _PyUnicode_FormatLong()
14219 numnondigits -= 2; in _PyUnicode_FormatLong()
14224 assert(len == numnondigits + numdigits); in _PyUnicode_FormatLong()
14231 numnondigits + prec); in _PyUnicode_FormatLong()
14238 for (i = 0; i < numnondigits; ++i) in _PyUnicode_FormatLong()
14248 len = numnondigits + prec; in _PyUnicode_FormatLong()