Home
last modified time | relevance | path

Searched refs:numdigits (Results 1 - 2 of 2) sorted by relevance

/third_party/python/Python/
H A Dformatter_unicode.c64 int numdigits; in get_integer() local
68 accumulator = numdigits = 0; in get_integer()
69 for (; pos < end; pos++, numdigits++) { in get_integer()
89 return numdigits; in get_integer()
/third_party/python/Objects/
H A Dunicodeobject.c14431 int numdigits; /* len == numnondigits + numdigits */ in _PyUnicode_FormatLong() local
14487 numdigits = len - numnondigits; in _PyUnicode_FormatLong()
14488 assert(numdigits > 0); in _PyUnicode_FormatLong()
14501 assert(len == numnondigits + numdigits); in _PyUnicode_FormatLong()
14502 assert(numdigits > 0); in _PyUnicode_FormatLong()
14506 if (prec > numdigits) { in _PyUnicode_FormatLong()
14517 for (i = 0; i < prec - numdigits; i++) in _PyUnicode_FormatLong()
14519 for (i = 0; i < numdigits; i++) in _PyUnicode_FormatLong()

Completed in 28 milliseconds