Searched refs:_PyLong_DECIMAL_BASE (Results 1 – 2 of 2) sorted by relevance
51 #define _PyLong_DECIMAL_BASE ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */ macro59 #define _PyLong_DECIMAL_BASE ((digit)10000) /* 10 ** DECIMAL_SHIFT */
1639 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()