Home
last modified time | relevance | path

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

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