Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dmarshal.c584 int j, md, shorts_in_top_digit; in r_PyLong() local
597 shorts_in_top_digit = 1 + (ABS(n) - 1) % PyLong_MARSHAL_RATIO; in r_PyLong()
614 for (j=0; j < shorts_in_top_digit; j++) { in r_PyLong()
619 if (md == 0 && j == shorts_in_top_digit - 1) { in r_PyLong()
/external/python/cpython3/Python/
Dmarshal.c814 int j, md, shorts_in_top_digit; in r_PyLong() local
829 shorts_in_top_digit = 1 + (Py_ABS(n) - 1) % PyLong_MARSHAL_RATIO; in r_PyLong()
852 for (j=0; j < shorts_in_top_digit; j++) { in r_PyLong()
861 if (md == 0 && j == shorts_in_top_digit - 1) { in r_PyLong()