Home
last modified time | relevance | path

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

/third_party/python/Include/
Dlongintrepr.h50 #define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */ macro
58 #define _PyLong_DECIMAL_SHIFT 4 /* max(e such that 10**e fits in a digit) */
/third_party/python/Objects/
Dlongobject.c1621 d = (33 * _PyLong_DECIMAL_SHIFT) / in long_to_decimal_string_internal()
1622 (10 * PyLong_SHIFT - 33 * _PyLong_DECIMAL_SHIFT); in long_to_decimal_string_internal()
1659 strlen = negative + 1 + (size - 1) * _PyLong_DECIMAL_SHIFT; in long_to_decimal_string_internal()
1706 for (j = 0; j < _PyLong_DECIMAL_SHIFT; j++) { \ in long_to_decimal_string_internal()