Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpyhash.h16 #define _PyHASH_MULTIPLIER 1000003UL /* 0xf4243 */ macro
31 #define _PyHASH_IMAG _PyHASH_MULTIPLIER
/external/python/cpython3/Python/
Dpyhash.c267 x = (_PyHASH_MULTIPLIER * x) ^ block.value; in fnv()
272 x = (_PyHASH_MULTIPLIER * x) ^ (Py_uhash_t) *p++; in fnv()
/external/python/cpython3/Objects/
Dtupleobject.c354 Py_uhash_t mult = _PyHASH_MULTIPLIER; in tuplehash()
/external/python/cpython3/Modules/
D_tracemalloc.c424 Py_uhash_t mult = _PyHASH_MULTIPLIER; in traceback_hash()