Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpyhash.h12 PyAPI_FUNC(Py_hash_t) _Py_HashBytes(const void*, Py_ssize_t);
/external/python/cpython3/Modules/_xxtestfuzz/
Dfuzzer.c36 int base = _Py_HashBytes(data, size) % 37; in fuzz_builtin_int()
/external/python/cpython3/Python/
Dpyhash.c146 _Py_HashBytes(const void *src, Py_ssize_t len) in _Py_HashBytes() function
/external/python/cpython3/Modules/
D_sre.c2512 hash2 = _Py_HashBytes(self->code, sizeof(self->code[0]) * self->codesize); in pattern_hash()
D_datetimemodule.c3197 return _Py_HashBytes(data, len); in generic_hash()
/external/python/cpython3/Objects/
Dmemoryobject.c2869 self->hash = _Py_HashBytes(mem, view->len); in memory_hash()
Dbytesobject.c1654 a->ob_shash = _Py_HashBytes(a->ob_sval, Py_SIZE(a)); in bytes_hash()
Dunicodeobject.c11659 x = _Py_HashBytes(PyUnicode_DATA(self), in unicode_hash()
/external/python/cpython2/Objects/
Dbytesobject.c1661 a->ob_shash = _Py_HashBytes(a->ob_sval, Py_SIZE(a)); in bytes_hash()