Home | History | Annotate | Download | only in Python

Lines Matching refs:Py_uhash_t

90     Py_uhash_t x, y;
114 y = (Py_uhash_t)m; /* pull out integer part */
126 if (x == (Py_uhash_t)-1)
127 x = (Py_uhash_t)-2;
164 Py_uhash_t hash;
181 hash ^= (Py_uhash_t) _Py_HashSecret.djbx33a.suffix;
245 Py_uhash_t x;
248 Py_uhash_t value;
263 x = (Py_uhash_t) _Py_HashSecret.fnv.prefix;
264 x ^= (Py_uhash_t) *p << 7;
272 x = (_PyHASH_MULTIPLIER * x) ^ (Py_uhash_t) *p++;
273 x ^= (Py_uhash_t) len;
274 x ^= (Py_uhash_t) _Py_HashSecret.fnv.suffix;