/third_party/python/Modules/clinic/ |
H A D | _hashopenssl.c.h | 177 EVP_new_impl(PyObject *module, PyObject *name_obj, PyObject *data_obj, 189 PyObject *data_obj = NULL; in EVP_new() local 201 data_obj = args[1]; in EVP_new() 215 return_value = EVP_new_impl(module, name_obj, data_obj, usedforsecurity); in EVP_new() 231 _hashlib_openssl_md5_impl(PyObject *module, PyObject *data_obj, 242 PyObject *data_obj = NULL; in _hashlib_openssl_md5() local 253 data_obj = args[0]; in _hashlib_openssl_md5() 267 return_value = _hashlib_openssl_md5_impl(module, data_obj, usedforsecurity); in _hashlib_openssl_md5() 283 _hashlib_openssl_sha1_impl(PyObject *module, PyObject *data_obj, 294 PyObject *data_obj in _hashlib_openssl_sha1() local 346 PyObject *data_obj = NULL; _hashlib_openssl_sha224() local 398 PyObject *data_obj = NULL; _hashlib_openssl_sha256() local 450 PyObject *data_obj = NULL; _hashlib_openssl_sha384() local 502 PyObject *data_obj = NULL; _hashlib_openssl_sha512() local 556 PyObject *data_obj = NULL; _hashlib_openssl_sha3_224() local 612 PyObject *data_obj = NULL; _hashlib_openssl_sha3_256() local 668 PyObject *data_obj = NULL; _hashlib_openssl_sha3_384() local 724 PyObject *data_obj = NULL; _hashlib_openssl_sha3_512() local 780 PyObject *data_obj = NULL; _hashlib_openssl_shake_128() local 836 PyObject *data_obj = NULL; _hashlib_openssl_shake_256() local [all...] |
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_pipeline_cache.c | 56 struct raw_data_object *data_obj = in raw_data_object_serialize() local 59 blob_write_bytes(blob, data_obj->data, data_obj->data_size); in raw_data_object_serialize() 79 struct raw_data_object *data_obj = in raw_data_object_deserialize() local 82 return data_obj ? &data_obj->base : NULL; in raw_data_object_deserialize() 88 struct raw_data_object *data_obj = in raw_data_object_destroy() local 91 vk_free(&data_obj->base.device->alloc, data_obj); in raw_data_object_destroy() 106 VK_MULTIALLOC_DECL(&ma, struct raw_data_object, data_obj, in raw_data_object_create() 366 struct raw_data_object *data_obj = vk_pipeline_cache_lookup_object() local 457 struct raw_data_object *data_obj = vk_pipeline_cache_lookup_nir() local 489 struct raw_data_object *data_obj = vk_pipeline_cache_add_nir() local [all...] |
/third_party/python/Modules/ |
H A D | _hashopenssl.c | 857 py_evp_fromname(PyObject *module, const char *digestname, PyObject *data_obj, in py_evp_fromname() argument 865 if (data_obj != NULL) { in py_evp_fromname() 866 GET_BUFFER_VIEW_OR_ERROUT(data_obj, &view); in py_evp_fromname() 917 if (data_obj != NULL) { in py_evp_fromname() 934 string as data_obj: object(c_default="NULL") = b'' 947 EVP_new_impl(PyObject *module, PyObject *name_obj, PyObject *data_obj, in EVP_new_impl() argument 956 return py_evp_fromname(module, name, data_obj, usedforsecurity); in EVP_new_impl() 963 string as data_obj: object(py_default="b''") = NULL 972 _hashlib_openssl_md5_impl(PyObject *module, PyObject *data_obj, in _hashlib_openssl_md5_impl() argument 976 return py_evp_fromname(module, Py_hash_md5, data_obj, usedforsecurit in _hashlib_openssl_md5_impl() 992 _hashlib_openssl_sha1_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_sha1_impl() argument 1012 _hashlib_openssl_sha224_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_sha224_impl() argument 1032 _hashlib_openssl_sha256_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_sha256_impl() argument 1052 _hashlib_openssl_sha384_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_sha384_impl() argument 1072 _hashlib_openssl_sha512_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_sha512_impl() argument 1094 _hashlib_openssl_sha3_224_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_sha3_224_impl() argument 1113 _hashlib_openssl_sha3_256_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_sha3_256_impl() argument 1132 _hashlib_openssl_sha3_384_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_sha3_384_impl() argument 1151 _hashlib_openssl_sha3_512_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_sha3_512_impl() argument 1172 _hashlib_openssl_shake_128_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_shake_128_impl() argument 1191 _hashlib_openssl_shake_256_impl(PyObject *module, PyObject *data_obj, int usedforsecurity) _hashlib_openssl_shake_256_impl() argument [all...] |
/third_party/python/PC/ |
H A D | pyshellext.cpp | 132 IDataObject *data_obj; variable 135 PyShellExt() : target(NULL), target_dir(NULL), target_mode(0), data_obj(NULL) { in PyShellExt() 146 if (data_obj) { in ~PyShellExt() 147 data_obj->Release(); in ~PyShellExt() 337 data_obj = pDataObj; in DragEnter() 341 if (FAILED(UpdateDropDescription(data_obj))) { in DragEnter() 344 if (FAILED(GetDragWindow(data_obj, &hwnd))) { in DragEnter() 368 if (pDataObj != data_obj) { in Drop() 373 data_obj->Release(); in Drop() 374 data_obj in Drop() [all...] |
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-api.cc | 107 Object data_obj = call_data.data(); in HandleApiCallHelper() local 110 isolate, data_obj, *function, raw_holder, *new_target, in HandleApiCallHelper()
|
/third_party/node/deps/v8/src/objects/ |
H A D | objects.cc | 6767 Object data_obj = in Get() local 6769 if (data_obj.IsUndefined(isolate)) return AccessCheckInfo(); in Get() 6770 return AccessCheckInfo::cast(data_obj); in Get() 6778 Object data_obj = in Get() 6780 if (data_obj.IsUndefined(isolate)) return AccessCheckInfo(); in Get() 6782 return AccessCheckInfo::cast(data_obj); in Get()
|