Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dstringobject.c4017 int numnondigits, skipped, filled; in _PyString_FormatLong() local
4057 numnondigits = sign; in _PyString_FormatLong()
4076 numnondigits += 2; in _PyString_FormatLong()
4079 numdigits = len - numnondigits - skipped; in _PyString_FormatLong()
4086 len = numnondigits + filled + numdigits; in _PyString_FormatLong()
4107 for (i = numnondigits; --i >= 0;) in _PyString_FormatLong()
4109 buf += numnondigits; in _PyString_FormatLong()
4110 s += numnondigits + skipped; in _PyString_FormatLong()