Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/turtledemo/
Dnim.py34 xored = state[0] ^ state[1] ^ state[2]
35 if xored == 0:
38 s = state[z] ^ xored
/external/python/cpython2/Demo/turtle/
Dtdemo_nim.py34 xored = state[0] ^ state[1] ^ state[2]
35 if xored == 0:
38 s = state[z] ^ xored
/external/python/cpython3/Python/
Dhamt.c418 int32_t xored = (int32_t)(hash & 0xffffffffl) ^ (int32_t)(hash >> 32); in hamt_hash() local
419 return xored == -1 ? -2 : xored; in hamt_hash()