Searched refs:hashreal (Results 1 – 2 of 2) sorted by relevance
411 Py_uhash_t hashreal, hashimag, combined; in complex_hash() local412 hashreal = (Py_uhash_t)_Py_HashDouble(v->cval.real); in complex_hash()413 if (hashreal == (Py_uhash_t)-1) in complex_hash()424 combined = hashreal + _PyHASH_IMAG * hashimag; in complex_hash()
465 long hashreal, hashimag, combined; in complex_hash() local466 hashreal = _Py_HashDouble(v->cval.real); in complex_hash()467 if (hashreal == -1) in complex_hash()478 combined = hashreal + 1000003 * hashimag; in complex_hash()