Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dobject.c1031 long hipart; in _Py_HashDouble() local
1077 hipart = (long)v; /* take the top 32 bits */ in _Py_HashDouble()
1078 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */ in _Py_HashDouble()
1079 x = hipart + (long)v + (expo << 15); in _Py_HashDouble()