Lines Matching refs:Py_uhash_t
73 Py_uhash_t hash;
208 static Py_uhash_t
230 static Py_uhash_t
234 return (Py_uhash_t)key; in hashtable_hash_uint()
264 static Py_uhash_t
361 static Py_uhash_t
365 Py_uhash_t x, y; /* Unsigned for defined overflow behavior. */ in traceback_hash()
367 Py_uhash_t mult = _PyHASH_MULTIPLIER; in traceback_hash()
373 y = (Py_uhash_t)PyObject_Hash(frame->filename); in traceback_hash()
374 y ^= (Py_uhash_t)frame->lineno; in traceback_hash()
379 mult += (Py_uhash_t)(82520UL + len + len); in traceback_hash()