Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dcomplexobject.c465 long hashreal, hashimag, combined; in complex_hash() local
469 hashimag = _Py_HashDouble(v->cval.imag); in complex_hash()
470 if (hashimag == -1) in complex_hash()
478 combined = hashreal + 1000003 * hashimag; in complex_hash()