Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dcomplexobject.c412 Py_uhash_t hashreal, hashimag, combined; in complex_hash() local
413 hashreal = (Py_uhash_t)_Py_HashDouble(v->cval.real); in complex_hash()
414 if (hashreal == (Py_uhash_t)-1) in complex_hash()
425 combined = hashreal + _PyHASH_IMAG * hashimag; in complex_hash()
/external/python/cpython2/Objects/
Dcomplexobject.c465 long hashreal, hashimag, combined; in complex_hash() local
466 hashreal = _Py_HashDouble(v->cval.real); in complex_hash()
467 if (hashreal == -1) in complex_hash()
478 combined = hashreal + 1000003 * hashimag; in complex_hash()