Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dpyhash.c226 # if SIZEOF_PY_UHASH_T == 4
230 # elif SIZEOF_PY_UHASH_T == 8
236 # error SIZEOF_PY_UHASH_T must be 4 or 8
239 # define PY_UHASH_CPY(dst, src) memcpy(dst, src, SIZEOF_PY_UHASH_T)
255 unsigned char bytes[SIZEOF_PY_UHASH_T]; in fnv()
261 remainder = len % SIZEOF_PY_UHASH_T; in fnv()
265 remainder = SIZEOF_PY_UHASH_T; in fnv()
267 blocks = (len - remainder) / SIZEOF_PY_UHASH_T; in fnv()
274 p += SIZEOF_PY_UHASH_T; in fnv()
/external/python/cpython3/Include/
Dpyport.h116 #define SIZEOF_PY_UHASH_T SIZEOF_SIZE_T macro
/external/python/cpython3/Objects/
Dtupleobject.c345 #if SIZEOF_PY_UHASH_T > 4