Home
last modified time | relevance | path

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

/third_party/python/Include/
H A Dpyhash.h103 * A Py_HASH_CUTOFF of 0 disables small string optimization. 32 bit platforms
108 #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.
112 #endif /* Py_HASH_CUTOFF */
/third_party/python/Python/
H A Dpyhash.c173 #if Py_HASH_CUTOFF > 0 in _Py_HashBytes()
174 if (len < Py_HASH_CUTOFF) { in _Py_HashBytes()
197 #endif /* Py_HASH_CUTOFF */ in _Py_HashBytes()
H A Dsysmodule.c1386 PyLong_FromLong(Py_HASH_CUTOFF)); in get_hash_info()

Completed in 6 milliseconds