/external/ComputeLibrary/src/cpu/kernels/ |
D | CpuConcatenateWidthKernel.cpp | 105 Iterator src_it(src, win); in run_op() local 117 …vst1q_u8(dst_ptr + dst_it.offset() + x, vquantize(vdequantize(vld1q_u8(src_it.ptr() + x), src_qinf… in run_op() 123 …*(dst_ptr + dst_it.offset() + x) = quantize_qasymm8(dequantize_qasymm8(*(src_it.ptr() + x), src_qi… in run_op() 126 src_it, dst_it); in run_op() 136 …vquantize_signed(vdequantize(vld1q_s8(reinterpret_cast<int8_t *>(src_it.ptr() + x)), src_qinfo), d… in run_op() 142 …t_it.offset() + x) = quantize_qasymm8_signed(dequantize_qasymm8_signed(*(src_it.ptr() + x), src_qi… in run_op() 145 src_it, dst_it); in run_op() 151 const auto in_ptr = src_it.ptr(); in run_op() 165 src_it, dst_it); in run_op()
|
D | CpuConcatenateHeightKernel.cpp | 105 Iterator src_it(src, win); in run_op() local 118 …vst1q_u8(dst_ptr + dst_it.offset() + x, vquantize(vdequantize(vld1q_u8(src_it.ptr() + x), src_qinf… in run_op() 124 …*(dst_ptr + dst_it.offset() + x) = quantize_qasymm8(dequantize_qasymm8(*(src_it.ptr() + x), src_qi… in run_op() 128 src_it, dst_it); in run_op() 138 …vquantize_signed(vdequantize(vld1q_s8(reinterpret_cast<int8_t *>(src_it.ptr()) + x), src_qinfo), d… in run_op() 144 …t_it.offset() + x) = quantize_qasymm8_signed(dequantize_qasymm8_signed(*(src_it.ptr() + x), src_qi… in run_op() 147 src_it, dst_it); in run_op() 153 const auto in_ptr = src_it.ptr(); in run_op() 168 src_it, dst_it); in run_op()
|
D | CpuConcatenateDepthKernel.cpp | 66 Iterator src_it(src, win); in depth_concat() local 76 const auto in_ptr = reinterpret_cast<const uint8_t *>(src_ptr + src_it.offset()); in depth_concat() 90 src_it, dst_it); in depth_concat() 96 const auto in_ptr = reinterpret_cast<const int8_t *>(src_ptr + src_it.offset()); in depth_concat() 110 src_it, dst_it); in depth_concat() 116 const auto in_ptr = reinterpret_cast<const T *>(src_ptr + src_it.offset()); in depth_concat() 129 src_it, dst_it); in depth_concat()
|
D | CpuCopyKernel.cpp | 132 Iterator src_it(src, out_slice); in run_op() local 137 … memcpy(dst_it.ptr(), src_it.ptr(), dst->info()->dimension(0) * dst->info()->element_size()); in run_op() 139 src_it, dst_it); in run_op() 148 Iterator src_it(src, src_window); in run_op() local 154 std::memcpy(dst_ptr, src_it.ptr(), row_size_in_bytes); in run_op() 156 src_it, dst_it); in run_op()
|
D | CpuConcatenateBatchKernel.cpp | 63 Iterator src_it(src, win); in batch_concat() local 73 const auto in_ptr = reinterpret_cast<const uint8_t *>(src_ptr + src_it.offset()); in batch_concat() 88 src_it, dst_it); in batch_concat() 94 const auto in_ptr = reinterpret_cast<const int8_t *>(src_ptr + src_it.offset()); in batch_concat() 107 src_it, dst_it); in batch_concat() 113 const auto in_ptr = reinterpret_cast<const T *>(src_ptr + src_it.offset()); in batch_concat() 128 src_it, dst_it); in batch_concat()
|
D | CpuPermuteKernel.cpp | 148 Iterator src_it(src, window_src); in run_permute() local 201 …reorder::nchw_to_nhwc(reinterpret_cast<const T *>(src_it.ptr()), reinterpret_cast<T *>(dst_it.ptr(… in run_permute() 206 src_it, dst_it); in run_permute() 218 …reorder::nhwc_to_nchw(reinterpret_cast<const T *>(src_it.ptr()), reinterpret_cast<T *>(dst_it.ptr(… in run_permute() 223 src_it, dst_it); in run_permute() 236 … *(reinterpret_cast<T *>(dst_it.ptr() + idx)) = *(reinterpret_cast<const T *>(src_it.ptr())); in run_permute() 238 src_it, dst_it); in run_permute()
|
D | CpuReshapeKernel.cpp | 71 Iterator src_it(src, window); in reshape_tensor() local 76 … *reinterpret_cast<T *>(dst->ptr_to_element(dst_coord)) = *reinterpret_cast<T *>(src_it.ptr()); in reshape_tensor() 78 src_it); in reshape_tensor()
|
D | CpuFloorKernel.cpp | 128 Iterator src_it(src, win); in run_op() local 133 _run_method(src_it.ptr(), dst_it.ptr(), len); in run_op() 135 src_it, dst_it); in run_op()
|
/external/emboss/compiler/back_end/cpp/testcode/ |
D | auto_array_size_test.cc | 52 for (auto src_it = src.begin(), dst_it = dst.begin(); in TEST() local 53 src_it != src.end() && dst_it != dst.end(); ++src_it, ++dst_it) { in TEST() 54 dst_it->CopyFrom(*src_it); in TEST() 60 for (auto src_it = src.begin(), dst_it = dst.begin(); in TEST() local 61 src_it != src.end() && dst_it != dst.end(); src_it++, dst_it++) { in TEST() 62 dst_it->CopyFrom(*src_it); in TEST() 68 for (auto src_it = src.rbegin(), dst_it = dst.rbegin(); in TEST() local 69 src_it != src.rend() && dst_it != dst.rend(); ++src_it, ++dst_it) { in TEST() 70 dst_it->CopyFrom(*src_it); in TEST() 76 for (auto src_it = src.rbegin(), dst_it = dst.rbegin(); in TEST() local [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | sendrecv_ops.cc | 119 auto src_it = attr.find("_src"); in TraceString() local 121 const string& src = src_it != attr.end() ? src_it->second.s() : ""; in TraceString() 165 auto src_it = attr.find("_src"); in TraceString() local 167 const string& src = src_it != attr.end() ? src_it->second.s() : ""; in TraceString()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | shaped_buffer.cc | 181 auto src_it = buffers().find(index); in TakeSubTree() local 184 dst_it->second = src_it->second; in TakeSubTree() 185 src_it->second = tensorflow::se::DeviceMemoryBase(nullptr, 0); in TakeSubTree() 186 ++src_it; in TakeSubTree()
|
/external/ComputeLibrary/src/core/ |
D | ITensor.cpp | 62 Iterator src_it(&src, win_src); in copy_from() local 70 memcpy(dst_it.ptr(), src_it.ptr(), line_size); in copy_from() 72 src_it, dst_it); in copy_from()
|
/external/ComputeLibrary/tests/datasets/ |
D | ReorgLayerDataset.h | 45 iterator(std::vector<TensorShape>::const_iterator src_it, in iterator() 47 : _src_it{ std::move(src_it) }, in iterator()
|
D | PoolingLayerDataset.h | 44 iterator(std::vector<TensorShape>::const_iterator src_it, in iterator() 46 : _src_it{ std::move(src_it) }, in iterator()
|
D | Pooling3dLayerDataset.h | 44 iterator(std::vector<TensorShape>::const_iterator src_it, in iterator() 46 : _src_it{ std::move(src_it) }, in iterator()
|
D | PriorBoxLayerDataset.h | 45 iterator(std::vector<TensorShape>::const_iterator src_it, in iterator() 47 : _src_it{ std::move(src_it) }, in iterator()
|
D | SpaceToDepthDataset.h | 45 iterator(std::vector<TensorShape>::const_iterator src_it, in iterator() 48 : _src_it{ std::move(src_it) }, in iterator()
|
D | DepthToSpaceDataset.h | 45 iterator(std::vector<TensorShape>::const_iterator src_it, in iterator() 48 : _src_it{ std::move(src_it) }, in iterator()
|
D | BatchToSpaceDataset.h | 45 iterator(std::vector<TensorShape>::const_iterator src_it, in iterator() 48 : _src_it{ std::move(src_it) }, in iterator()
|
D | Col2ImLayerDataset.h | 45 iterator(std::vector<TensorShape>::const_iterator src_it, in iterator() 49 : _src_it{ std::move(src_it) }, in iterator()
|
D | SpaceToBatchDataset.h | 45 iterator(std::vector<TensorShape>::const_iterator src_it, in iterator() 49 : _src_it{ std::move(src_it) }, in iterator()
|
/external/ComputeLibrary/tests/datasets/dynamic_fusion/ |
D | PoolingLayerDataset.h | 46 iterator(std::vector<TensorShape>::const_iterator src_it, in iterator() 48 : _src_it{ std::move(src_it) }, in iterator()
|
/external/openscreen/third_party/abseil/src/absl/container/internal/ |
D | btree_container.h | 364 for (auto src_it = src.begin(); src_it != src.end();) { in merge() local 365 if (insert(std::move(params_type::element(src_it.slot()))).second) { in merge() 366 src_it = src.erase(src_it); in merge() 368 ++src_it; in merge() 645 for (auto src_it = src.begin(), end = src.end(); src_it != end; ++src_it) { in merge() local 646 insert(std::move(params_type::element(src_it.slot()))); in merge()
|
/external/abseil-cpp/absl/container/internal/ |
D | btree_container.h | 420 for (auto src_it = src.begin(); src_it != src.end();) { in merge() local 421 if (insert(std::move(params_type::element(src_it.slot()))).second) { in merge() 422 src_it = src.erase(src_it); in merge() 424 ++src_it; in merge() 724 for (auto src_it = src.begin(), end = src.end(); src_it != end; ++src_it) { in merge() local 725 insert(std::move(params_type::element(src_it.slot()))); in merge()
|
/external/cronet/tot/third_party/abseil-cpp/absl/container/internal/ |
D | btree_container.h | 420 for (auto src_it = src.begin(); src_it != src.end();) { in merge() local 421 if (insert(std::move(params_type::element(src_it.slot()))).second) { in merge() 422 src_it = src.erase(src_it); in merge() 424 ++src_it; in merge() 724 for (auto src_it = src.begin(), end = src.end(); src_it != end; ++src_it) { in merge() local 725 insert(std::move(params_type::element(src_it.slot()))); in merge()
|