Home
last modified time | relevance | path

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

/third_party/python/Include/
Dlongintrepr.h51 #define _PyLong_DECIMAL_BASE ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */ macro
59 #define _PyLong_DECIMAL_BASE ((digit)10000) /* 10 ** DECIMAL_SHIFT */
/third_party/python/Objects/
Dlongobject.c1639 hi = (digit)(z / _PyLong_DECIMAL_BASE); in long_to_decimal_string_internal()
1641 _PyLong_DECIMAL_BASE); in long_to_decimal_string_internal()
1644 pout[size++] = hi % _PyLong_DECIMAL_BASE; in long_to_decimal_string_internal()
1645 hi /= _PyLong_DECIMAL_BASE; in long_to_decimal_string_internal()