Home
last modified time | relevance | path

Searched refs:_Py_HashSecret (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython3/Python/
Dpyhash.c20 _Py_HashSecret_t _Py_HashSecret = {{0}}; variable
181 hash ^= (Py_uhash_t) _Py_HashSecret.djbx33a.suffix; in _Py_HashBytes()
263 x = (Py_uhash_t) _Py_HashSecret.fnv.prefix; in fnv()
274 x ^= (Py_uhash_t) _Py_HashSecret.fnv.suffix; in fnv()
418 _le64toh(_Py_HashSecret.siphash.k0), _le64toh(_Py_HashSecret.siphash.k1), in pysiphash()
Dbootstrap_hash.c555 Py_BUILD_ASSERT(sizeof(_Py_HashSecret_t) == sizeof(_Py_HashSecret.uc)); in _Py_ReadHashSeed()
583 void *secret = &_Py_HashSecret; in _Py_HashRandomization_Init()
/external/python/cpython3/Include/
Dpyhash.h77 PyAPI_DATA(_Py_HashSecret_t) _Py_HashSecret;
/external/python/cpython2/Python/
Drandom.c365 void *secret = &_Py_HashSecret; in _PyRandom_Init()
/external/python/cpython2/Objects/
Dbufferobject.c345 x = _Py_HashSecret.prefix; in buffer_hash()
350 x ^= _Py_HashSecret.suffix; in buffer_hash()
Dobject.c1107 _Py_HashSecret_t _Py_HashSecret; variable
Dstringobject.c1290 x = _Py_HashSecret.prefix; in string_hash()
1295 x ^= _Py_HashSecret.suffix; in string_hash()
Dunicodeobject.c6664 x = _Py_HashSecret.prefix; in unicode_hash()
6669 x ^= _Py_HashSecret.suffix; in unicode_hash()
/external/python/cpython3/Tools/c-globals/
Dignored-globals.txt373 _Py_HashSecret
/external/python/cpython2/Include/
Dobject.h524 PyAPI_DATA(_Py_HashSecret_t) _Py_HashSecret;
/external/python/cpython3/Modules/
Dpyexpat.c1198 (unsigned long)_Py_HashSecret.expat.hashsalt); in newxmlparseobject()
D_elementtree.c3354 (unsigned long)_Py_HashSecret.expat.hashsalt); in _elementtree_XMLParser___init___impl()
/external/python/cpython2/Modules/
Dpyexpat.c1324 (unsigned long)_Py_HashSecret.prefix); in newxmlparseobject()
/external/python/cpython3/Misc/NEWS.d/
D3.7.1rc1.rst19 randomization salt from _Py_HashSecret instead of libexpat's default CSPRNG.