Home
last modified time | relevance | path

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

/third_party/python/Python/
Dmarshal.c220 #define PyLong_MARSHAL_RATIO (PyLong_SHIFT / PyLong_MARSHAL_SHIFT) macro
240 l = (n-1) * PyLong_MARSHAL_RATIO; in w_PyLong()
256 for (j=0; j < PyLong_MARSHAL_RATIO; j++) { in w_PyLong()
789 size = 1 + (Py_ABS(n) - 1) / PyLong_MARSHAL_RATIO; in r_PyLong()
790 shorts_in_top_digit = 1 + (Py_ABS(n) - 1) % PyLong_MARSHAL_RATIO; in r_PyLong()
799 for (j=0; j < PyLong_MARSHAL_RATIO; j++) { in r_PyLong()