/third_party/python/Lib/test/ |
D | test_hmac.py | 52 self, key, data, digest, hashfunc, hashname, digest_size, block_size argument 54 h = hmac.HMAC(key, data, digestmod=hashfunc) 83 h = hmac.new(key, data, digestmod=hashfunc) 91 hmac.digest(key, data, digest=hashfunc), 132 hashfunc=hashlib.md5, 172 hashfunc=hashlib.sha1, 207 def _rfc4231_test_cases(self, hashfunc, hash_name, digest_size, block_size): argument 209 digest = hexdigests[hashfunc] 213 hashfunc=hashfunc,
|
/third_party/python/Doc/includes/ |
D | typestruct.h | 24 hashfunc tp_hash;
|
/third_party/python/Python/ |
D | sysmodule.c | 1398 PyHash_FuncDef *hashfunc; in get_hash_info() local 1402 hashfunc = PyHash_GetFuncDef(); in get_hash_info() 1414 PyUnicode_FromString(hashfunc->name)); in get_hash_info() 1416 PyLong_FromLong(hashfunc->hash_bits)); in get_hash_info() 1418 PyLong_FromLong(hashfunc->seed_bits)); in get_hash_info()
|
D | context.c | 1070 .tp_hash = (hashfunc)contextvar_tp_hash,
|
/third_party/python/Include/cpython/ |
D | object.h | 214 hashfunc tp_hash;
|
/third_party/python/Include/ |
D | object.h | 207 typedef Py_hash_t (*hashfunc)(PyObject *); typedef
|
/third_party/python/Objects/ |
D | classobject.c | 345 (hashfunc)method_hash, /* tp_hash */
|
D | methodobject.c | 351 (hashfunc)meth_hash, /* tp_hash */
|
D | complexobject.c | 1067 (hashfunc)complex_hash, /* tp_hash */
|
D | weakrefobject.c | 386 (hashfunc)weakref_hash, /*tp_hash*/
|
D | tupleobject.c | 913 (hashfunc)tuplehash, /* tp_hash */
|
D | rangeobject.c | 732 (hashfunc)range_hash, /* tp_hash */
|
D | codeobject.c | 1214 (hashfunc)code_hash, /* tp_hash */
|
D | floatobject.c | 1942 (hashfunc)float_hash, /* tp_hash */
|
D | descrobject.c | 1412 (hashfunc)wrapper_hash, /* tp_hash */
|
D | typeobject.c | 5527 (hashfunc)_Py_HashPointer, /* tp_hash */ 6817 hashfunc func = (hashfunc)wrapped; in wrap_hashfunc()
|
/third_party/python/Modules/ |
D | _datetimemodule.c | 2725 (hashfunc)delta_hash, /* tp_hash */ 3571 (hashfunc)date_hash, /* tp_hash */ 4056 (hashfunc)timezone_hash, /* tp_hash */ 4722 (hashfunc)time_hash, /* tp_hash */ 6439 (hashfunc)datetime_hash, /* tp_hash */
|
D | _sre.c | 2736 {Py_tp_hash, (hashfunc)pattern_hash},
|
D | _testbuffer.c | 2657 (hashfunc)ndarray_hash, /* tp_hash */
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 842 type,hashfunc,3.2,
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 70 …| :c:member:`~PyTypeObject.tp_hash` | :c:type:`hashfunc` | __hash__ … 396 | :c:type:`hashfunc` | :c:type:`PyObject` * | Py_hash_t | 867 .. c:member:: hashfunc PyTypeObject.tp_hash 2536 .. c:type:: Py_hash_t (*hashfunc)(PyObject *) 2671 .tp_hash = (hashfunc)myobj_hash,
|
/third_party/python/Doc/extending/ |
D | newtypes.rst | 461 hashfunc tp_hash;
|
/third_party/python/Misc/ |
D | stable_abi.txt | 244 typedef hashfunc
|
/third_party/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 1952 (hashfunc)0, /* tp_hash */ in SwigPyObject_TypeOnce() 2139 (hashfunc)0, /* tp_hash */ in SwigPyPacked_TypeOnce()
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 4854 (hashfunc) dec_hash, /* tp_hash */ 5540 (hashfunc) 0, /* tp_hash */
|