Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dtupleobject.c395 #define _PyHASH_XXROTATE(x) ((x << 31) | (x >> 33)) /* Rotate left 31 bits */ macro
400 #define _PyHASH_XXROTATE(x) ((x << 13) | (x >> 19)) /* Rotate left 13 bits */ macro
418 acc = _PyHASH_XXROTATE(acc); in tuplehash()