Home | History | Annotate | Download | only in Modules

Lines Matching refs:Py_uhash_t

91     Py_uhash_t hash;
225 static Py_uhash_t
251 static Py_uhash_t
255 Py_uhash_t hash;
259 hash = (Py_uhash_t)_Py_HashPointer((void*)ptr.ptr);
306 static Py_uhash_t
418 static Py_uhash_t
422 Py_uhash_t x, y; /* Unsigned for defined overflow behavior. */
424 Py_uhash_t mult = _PyHASH_MULTIPLIER;
430 y = (Py_uhash_t)PyObject_Hash(frame->filename);
431 y ^= (Py_uhash_t)frame->lineno;
436 mult += (Py_uhash_t)(82520UL + len + len);