Home
last modified time | relevance | path

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

/third_party/python/Include/
Dpyhash.h108 #ifndef Py_HASH_CUTOFF
109 # define Py_HASH_CUTOFF 0 macro
110 #elif (Py_HASH_CUTOFF > 7 || Py_HASH_CUTOFF < 0)
111 # error Py_HASH_CUTOFF must in range 0...7.
/third_party/python/Python/
Dpyhash.c173 #if Py_HASH_CUTOFF > 0 in _Py_HashBytes()
174 if (len < Py_HASH_CUTOFF) { in _Py_HashBytes()
Dsysmodule.c1419 PyLong_FromLong(Py_HASH_CUTOFF)); in get_hash_info()