Home
last modified time | relevance | path

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

/third_party/python/Python/
Dpyhash.c228 # if SIZEOF_PY_UHASH_T == 4
232 # elif SIZEOF_PY_UHASH_T == 8
238 # error SIZEOF_PY_UHASH_T must be 4 or 8
241 # define PY_UHASH_CPY(dst, src) memcpy(dst, src, SIZEOF_PY_UHASH_T)
257 unsigned char bytes[SIZEOF_PY_UHASH_T]; in fnv()
263 remainder = len % SIZEOF_PY_UHASH_T; in fnv()
267 remainder = SIZEOF_PY_UHASH_T; in fnv()
269 blocks = (len - remainder) / SIZEOF_PY_UHASH_T; in fnv()
276 p += SIZEOF_PY_UHASH_T; in fnv()
/third_party/python/Include/
Dpyport.h118 #define SIZEOF_PY_UHASH_T SIZEOF_SIZE_T macro
/third_party/python/Objects/
Dtupleobject.c391 #if SIZEOF_PY_UHASH_T > 4