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.c220 # if SIZEOF_PY_UHASH_T == 4
224 # elif SIZEOF_PY_UHASH_T == 8
230 # error SIZEOF_PY_UHASH_T must be 4 or 8
233 # define PY_UHASH_CPY(dst, src) memcpy(dst, src, SIZEOF_PY_UHASH_T)
249 unsigned char bytes[SIZEOF_PY_UHASH_T]; in fnv()
255 remainder = len % SIZEOF_PY_UHASH_T; in fnv()
259 remainder = SIZEOF_PY_UHASH_T; in fnv()
261 blocks = (len - remainder) / SIZEOF_PY_UHASH_T; in fnv()
268 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.c353 #if SIZEOF_PY_UHASH_T > 4