Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dlongobject.c2225 static const int half_even_correction[8] = {0, -1, -2, 1, 0, -1, 2, 1}; in _PyLong_Frexp() local
2301 x_digits[0] += half_even_correction[x_digits[0] & 7]; in _PyLong_Frexp()
/external/python/cpython3/Objects/
Dlongobject.c2758 static const int half_even_correction[8] = {0, -1, -2, 1, 0, -1, 2, 1}; in _PyLong_Frexp() local
2833 x_digits[0] += half_even_correction[x_digits[0] & 7]; in _PyLong_Frexp()