Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpyhash.h18 #define _PyHASH_MULTIPLIER 1000003UL /* 0xf4243 */ macro
33 #define _PyHASH_IMAG _PyHASH_MULTIPLIER
/external/python/cpython3/Python/
Dpyhash.c273 x = (_PyHASH_MULTIPLIER * x) ^ block.value; in fnv()
278 x = (_PyHASH_MULTIPLIER * x) ^ (Py_uhash_t) *p++; in fnv()
/external/python/cpython3/Modules/
D_tracemalloc.c367 Py_uhash_t mult = _PyHASH_MULTIPLIER; in traceback_hash()