/aosp_15_r20/art/libartbase/base/ |
H A D | leb128_test.cc | 158 const uint8_t* data_ptr = &uleb128_tests[i].leb128_data[0]; in TEST() local 178 const uint8_t* data_ptr = &uleb128_tests[i].leb128_data[0]; in TEST() local 197 const uint8_t* data_ptr = &uleb128_64bit_tests[i].leb128_data[0]; in TEST() local 218 const uint8_t* data_ptr = &uleb128_tests[i].leb128_data[0]; in TEST() local 241 const uint8_t* data_ptr = &uleb128_tests[i].leb128_data[0]; in TEST() local 263 const uint8_t* data_ptr = &uleb128_64bit_tests[i].leb128_data[0]; in TEST() local 282 const uint8_t* data_ptr = &sleb128_tests[i].leb128_data[0]; in TEST() local 302 const uint8_t* data_ptr = &sleb128_tests[i].leb128_data[0]; in TEST() local 321 const uint8_t* data_ptr = &sleb128_64bit_tests[i].leb128_data[0]; in TEST() local 342 const uint8_t* data_ptr = &sleb128_tests[i].leb128_data[0]; in TEST() local [all …]
|
/aosp_15_r20/external/pytorch/c10/core/impl/ |
H A D | COW.cpp | 20 at::DataPtr const& data_ptr, in make_data_ptr() 26 at::DataPtr copy_data_ptr(at::DataPtr const& data_ptr) { in copy_data_ptr() 36 const c10::DataPtr& data_ptr = storage.data_ptr(); in has_simple_data_ptr() local 47 bool is_cow_data_ptr(const c10::DataPtr& data_ptr) { in is_cow_data_ptr() 52 const at::DataPtr& data_ptr = storage.data_ptr(); in lazy_clone_storage() local 117 const at::DataPtr& data_ptr = storage.data_ptr(); in materialize_cow_storage() local
|
/aosp_15_r20/external/executorch/extension/tensor/test/ |
H A D | tensor_impl_ptr_test.cpp | 150 std::shared_ptr<float[]> data_ptr( in TEST_F() local 380 auto data_ptr = static_cast<const float*>(tensor_impl->data()); in TEST_F() local 394 auto data_ptr = static_cast<const double*>(tensor_impl->data()); in TEST_F() local 419 auto data_ptr = static_cast<const exec_aten::Half*>(tensor_impl->data()); in TEST_F() local 434 auto data_ptr = static_cast<const float*>(tensor_impl->data()); in TEST_F() local 449 auto data_ptr = static_cast<const int32_t*>(tensor_impl->data()); in TEST_F() local 464 auto data_ptr = static_cast<const exec_aten::BFloat16*>(tensor_impl->data()); in TEST_F() local 476 auto data_ptr = static_cast<const exec_aten::Half*>(tensor_impl->data()); in TEST_F() local 488 auto data_ptr = static_cast<const int64_t*>(tensor_impl->data()); in TEST_F() local
|
H A D | tensor_ptr_test.cpp | 169 auto* data_ptr = data.data(); in TEST_F() local 190 std::shared_ptr<float[]> data_ptr( in TEST_F() local 503 auto data_ptr = tensor->const_data_ptr<float>(); in TEST_F() local 517 auto data_ptr = tensor->const_data_ptr<double>(); in TEST_F() local 532 auto data_ptr = tensor->const_data_ptr<exec_aten::Half>(); in TEST_F() local 547 auto data_ptr = tensor->const_data_ptr<float>(); in TEST_F() local 562 auto data_ptr = tensor->const_data_ptr<int32_t>(); in TEST_F() local 575 auto data_ptr = tensor->const_data_ptr<exec_aten::BFloat16>(); in TEST_F() local 588 auto data_ptr = tensor->const_data_ptr<exec_aten::Half>(); in TEST_F() local 601 auto data_ptr = tensor->const_data_ptr<int64_t>(); in TEST_F() local [all …]
|
/aosp_15_r20/external/arm-trusted-firmware/drivers/auth/mbedtls/ |
H A D | mbedtls_crypto.c | 59 static int verify_signature(void *data_ptr, unsigned int data_len, in verify_signature() 148 static int verify_hash(void *data_ptr, unsigned int data_len, in verify_hash() 218 int calc_hash(unsigned int alg, void *data_ptr, in calc_hash() 240 static int aes_gcm_decrypt(void *data_ptr, size_t len, const void *key, in aes_gcm_decrypt() 307 static int auth_decrypt(enum crypto_dec_algo dec_algo, void *data_ptr, in auth_decrypt()
|
/aosp_15_r20/external/trusty/arm-trusted-firmware/drivers/auth/mbedtls/ |
D | mbedtls_crypto.c | 86 static int verify_signature(void *data_ptr, unsigned int data_len, in verify_signature() 175 static int verify_hash(void *data_ptr, unsigned int data_len, in verify_hash() 273 static int calc_hash(enum crypto_md_algo md_algo, void *data_ptr, in calc_hash() 301 static int aes_gcm_decrypt(void *data_ptr, size_t len, const void *key, in aes_gcm_decrypt() 383 static int auth_decrypt(enum crypto_dec_algo dec_algo, void *data_ptr, in auth_decrypt()
|
D | mbedtls_psa_crypto.c | 348 static int verify_signature(void *data_ptr, unsigned int data_len, in verify_signature() 495 static int verify_hash(void *data_ptr, unsigned int data_len, in verify_hash() 592 static int calc_hash(enum crypto_md_algo md_algo, void *data_ptr, in calc_hash() 629 static int aes_gcm_decrypt(void *data_ptr, size_t len, const void *key, in aes_gcm_decrypt() 711 static int auth_decrypt(enum crypto_dec_algo dec_algo, void *data_ptr, in auth_decrypt()
|
/aosp_15_r20/external/arm-trusted-firmware/drivers/auth/ |
H A D | crypto_mod.c | 67 int crypto_mod_verify_signature(void *data_ptr, unsigned int data_len, in crypto_mod_verify_signature() 95 int crypto_mod_verify_hash(void *data_ptr, unsigned int data_len, in crypto_mod_verify_hash() 117 int crypto_mod_calc_hash(unsigned int alg, void *data_ptr, in crypto_mod_calc_hash() 139 int crypto_mod_auth_decrypt(enum crypto_dec_algo dec_algo, void *data_ptr, in crypto_mod_auth_decrypt()
|
H A D | auth_mod.c | 99 void *data_ptr, *hash_der_ptr; in auth_hash() local 152 void *data_ptr, *pk_ptr, *pk_hash_ptr, *sig_ptr, *sig_alg_ptr; in auth_signature() local 242 void *data_ptr = NULL; in auth_nvctr() local
|
/aosp_15_r20/external/pytorch/aten/src/ATen/cuda/ |
H A D | jiterator_impl.h | 115 void* data_ptr() { in data_ptr() function 152 void* data_ptr() { in data_ptr() function 180 void* data_ptr() { in data_ptr() function 209 void* data_ptr() { in data_ptr() function 238 void* data_ptr() { in data_ptr() function
|
/aosp_15_r20/external/trusty/arm-trusted-firmware/drivers/auth/ |
D | crypto_mod.c | 79 int crypto_mod_verify_signature(void *data_ptr, unsigned int data_len, in crypto_mod_verify_signature() 107 int crypto_mod_verify_hash(void *data_ptr, unsigned int data_len, in crypto_mod_verify_hash() 132 int crypto_mod_calc_hash(enum crypto_md_algo alg, void *data_ptr, in crypto_mod_calc_hash() 170 int crypto_mod_auth_decrypt(enum crypto_dec_algo dec_algo, void *data_ptr, in crypto_mod_auth_decrypt()
|
D | auth_mod.c | 93 void *data_ptr, *hash_der_ptr; in auth_hash() local 159 void *data_ptr, *pk_ptr, *cnv_pk_ptr, *pk_plat_ptr, *sig_ptr, *sig_alg_ptr, *pk_oid; in auth_signature() local 327 void *data_ptr = NULL; in auth_nvctr() local
|
/aosp_15_r20/external/deqp/external/openglcts/modules/gl/ |
H A D | gl4cPipelineStatisticsQueryTests.cpp | 2561 …PipelineStatisticsQueryTestFunctional2 *data_ptr = (PipelineStatisticsQueryTestFunctional2 *)pThis; in executeBlitFramebufferTest() local 2591 …PipelineStatisticsQueryTestFunctional2 *data_ptr = (PipelineStatisticsQueryTestFunctional2 *)pThis; in executeBufferSubDataTest() local 2619 …PipelineStatisticsQueryTestFunctional2 *data_ptr = (PipelineStatisticsQueryTestFunctional2 *)pThis; in executeClearBufferfvColorBufferTest() local 2640 …PipelineStatisticsQueryTestFunctional2 *data_ptr = (PipelineStatisticsQueryTestFunctional2 *)pThis; in executeClearBufferfvDepthBufferTest() local 2661 …PipelineStatisticsQueryTestFunctional2 *data_ptr = (PipelineStatisticsQueryTestFunctional2 *)pThis; in executeClearBufferivStencilBufferTest() local 2681 …PipelineStatisticsQueryTestFunctional2 *data_ptr = (PipelineStatisticsQueryTestFunctional2 *)pThis; in executeClearBufferSubDataTest() local 2713 …PipelineStatisticsQueryTestFunctional2 *data_ptr = (PipelineStatisticsQueryTestFunctional2 *)pThis; in executeClearColorBufferTest() local 2732 …PipelineStatisticsQueryTestFunctional2 *data_ptr = (PipelineStatisticsQueryTestFunctional2 *)pThis; in executeClearDepthBufferTest() local 2751 …PipelineStatisticsQueryTestFunctional2 *data_ptr = (PipelineStatisticsQueryTestFunctional2 *)pThis; in executeClearStencilBufferTest() local 2770 …PipelineStatisticsQueryTestFunctional2 *data_ptr = (PipelineStatisticsQueryTestFunctional2 *)pThis; in executeClearTexSubImageTest() local [all …]
|
/aosp_15_r20/external/executorch/backends/mediatek/runtime/ |
H A D | NeuronBackend.cpp | 114 auto data_ptr = args[i]->toTensor().data_ptr(); in execute() local 131 auto data_ptr = args[o]->toTensor().data_ptr(); in execute() local 158 auto data_ptr = args[i]->toTensor().data_ptr(); in HintNeuronBackend() local 170 auto data_ptr = args[o]->toTensor().data_ptr(); in HintNeuronBackend() local
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_image.c | 217 char *data_ptr; in sp_tgsi_load() local 299 char *data_ptr; in sp_tgsi_store() local 351 char *data_ptr, in handle_op_uint() 468 char *data_ptr, in handle_op_int() 582 char *data_ptr, in handle_op_r32f_xchg() 634 char *data_ptr; in sp_tgsi_op() local
|
/aosp_15_r20/external/coreboot/src/drivers/ipmi/ |
H A D | ipmi_fru.c | 100 static int read_data_string(const uint8_t *data_ptr, char **string) in read_data_string() 131 uint8_t *data_ptr, *end, *custom_data_ptr; in read_fru_chassis_info_area() local 222 uint8_t *data_ptr, *end, *custom_data_ptr; in read_fru_board_info_area() local 321 uint8_t *data_ptr, *end, *custom_data_ptr; in read_fru_product_info_area() local
|
/aosp_15_r20/hardware/broadcom/wlan/bcmdhd/wifi_hal/ |
D | link_layer_stats.cpp | 98 u8 *radioStatsBuf = NULL, *ifaceMlStatsBuf = NULL, *outbuf = NULL, *data_ptr = NULL; in handleResponse() local 326 u8 *data_ptr = NULL; in convertToExternalRatestatsStructure() local 376 u8 *data_ptr = NULL; in convertToExternalIfaceLinkstatStructure() local 451 u8 *data_ptr = NULL; in convertToExternalIfaceMlstatStructure() local
|
/aosp_15_r20/external/webrtc/common_audio/ |
H A D | ring_buffer_unittest.cc | 52 static void RandomStressTest(int** data_ptr) { in RandomStressTest() 107 int* data_ptr = nullptr; in TEST() local 119 int* data_ptr; in TEST() local
|
/aosp_15_r20/external/mesa3d/src/vulkan/runtime/ |
H A D | vk_video.c | 1564 void *data_ptr) in vk_video_encode_h264_sps() 1686 void *data_ptr) in vk_video_encode_h264_pps() 1772 void *data_ptr) in vk_video_encode_h265_vps() 1862 void *data_ptr) in vk_video_encode_h265_sps() 2020 void *data_ptr) in vk_video_encode_h265_pps() 2098 void *data_ptr) in vk_video_encode_h264_slice_header() 2262 void *data_ptr) in vk_video_encode_h265_slice_header()
|
/aosp_15_r20/external/mesa3d/src/gallium/frontends/clover/core/ |
H A D | memory.cpp | 97 const void *data_ptr = NULL; in resource_in() local 110 root_buffer::resource(command_queue &q, const void *data_ptr) { in resource() 185 const void *data_ptr = !data.empty() ? data.data() : NULL; in resource_in() local 195 image::resource(command_queue &q, const void *data_ptr) { in resource()
|
/aosp_15_r20/external/executorch/extension/tensor/ |
H A D | tensor_impl_ptr.h | 141 auto data_ptr = variable 153 auto data_ptr = std::make_shared<std::vector<T>>(std::move(data)); variable
|
H A D | tensor_ptr.h | 146 auto data_ptr = variable 158 auto data_ptr = std::make_shared<std::vector<T>>(std::move(data)); variable
|
/aosp_15_r20/trusty/user/base/lib/hwaes/ |
D | hwaes.c | 93 static void hwaes_set_shm_arg_helper(const uint8_t* data_ptr, in hwaes_set_shm_arg_helper() 170 static void hwaes_set_iov_helper(const void* data_ptr, in hwaes_set_iov_helper() 216 static void hwaes_set_iov_arg_helper(const void* data_ptr, in hwaes_set_iov_arg_helper()
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/ |
H A D | RangeFactories.cpp | 113 scalar_t *data_ptr = r.data_ptr<scalar_t>(); in logspace_out() local 132 scalar_t *data_ptr = r.data_ptr<scalar_t>(); in logspace_out() local 176 scalar_t *data_ptr = r.data_ptr<scalar_t>(); in range_out() local
|
/aosp_15_r20/external/deqp/external/openglcts/modules/gles31/ |
H A D | es31cTextureStorageMultisampleFunctionalTests.cpp | 671 float *data_ptr = row_ptr + x * pixel_size; in iterate() local 1058 const unsigned int *data_ptr = (unsigned int *)((char *)row_ptr + x * pixel_size); in iterate() local 2629 unsigned char *data_ptr = NULL; in iterate() local 3021 void *data_ptr = NULL; in iterate() local
|