Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dcomplexobject.c407 Py_uhash_t hashreal, hashimag, combined; in complex_hash() local
408 hashreal = (Py_uhash_t)_Py_HashDouble((PyObject *) v, v->cval.real); in complex_hash()
409 if (hashreal == (Py_uhash_t)-1) in complex_hash()
420 combined = hashreal + _PyHASH_IMAG * hashimag; in complex_hash()