/external/tensorflow/tensorflow/core/kernels/ |
D | ragged_tensor_to_tensor_op.cc | 488 INDEX_TYPE dst_end = 0; // Destination for contiguous region (in output) in SetOutput() local 495 if (dst_i == dst_end) { in SetOutput() 496 ++dst_end; in SetOutput() 504 if (dst_start < dst_end) { in SetOutput() 508 INDEX_TYPE nvals = (dst_end - dst_start) * value_element_size; in SetOutput() 518 if (dst_i > dst_end) { in SetOutput() 520 std::fill(output_base + dst_end * value_element_size, in SetOutput() 522 dst_end = dst_i; in SetOutput() 524 while (dst_i > dst_end) { in SetOutput() 525 VALUE_TYPE* dst = output_base + dst_end * value_element_size; in SetOutput() [all …]
|
/external/tflite-support/tensorflow_lite_support/custom_ops/kernel/ragged/ |
D | ragged_tensor_to_tensor_tflite.cc | 474 int dst_end = 0; // Destination for contiguous region (in output) in SetOutputT() local 481 if (dst_i == dst_end) { in SetOutputT() 482 ++dst_end; in SetOutputT() 490 if (dst_start < dst_end) { in SetOutputT() 494 int nvals = (dst_end - dst_start) * value_element_size; in SetOutputT() 505 if (dst_i > dst_end) { in SetOutputT() 506 std::fill(output_base + dst_end * value_element_size, in SetOutputT() 508 dst_end = dst_i; in SetOutputT() 515 dst_start = dst_end; in SetOutputT() 519 dst_start = dst_end; in SetOutputT() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-ot-name.cc | 86 const typename out_utf_t::codepoint_t *dst_end = text + *text_size; in hb_ot_name_convert_utf() local 88 while (src < src_end && dst < dst_end) in hb_ot_name_convert_utf() 91 typename out_utf_t::codepoint_t *dst_next = out_utf_t::encode (dst, dst_end, unicode); in hb_ot_name_convert_utf()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_fs_register_coalesce.cpp | 108 int dst_end = live.end[dst_var]; in can_coalesce_vars() local 113 if ((dst_end > src_end && src_start < dst_start) || in can_coalesce_vars() 114 (src_end > dst_end && dst_start < src_start)) in can_coalesce_vars() 121 int end_ip = MIN2(dst_end, src_end); in can_coalesce_vars()
|
/external/libaom/libaom/av1/common/ppc/ |
D | cfl_ppc.c | 39 const int16_t *dst_end = dst + height * CFL_BUF_LINE; in subtract_average_vsx() local 109 } while ((dst += CFL_BUF_LINE * 4) < dst_end); in subtract_average_vsx()
|
/external/webrtc/modules/desktop_capture/linux/ |
D | mouse_cursor_monitor_x11.cc | 213 uint32_t* dst_end = dst + (img->width * img->height); in CaptureCursor() local 214 while (dst < dst_end) { in CaptureCursor()
|
/external/llvm-project/lldb/source/Utility/ |
D | DataExtractor.cpp | 407 uint16_t *dst_end = dst_pos + count; in GetU16() local 409 while (dst_pos < dst_end) { in GetU16() 456 uint32_t *dst_end = dst_pos + count; in GetU32() local 458 while (dst_pos < dst_end) { in GetU32() 504 uint64_t *dst_end = dst_pos + count; in GetU64() local 506 while (dst_pos < dst_end) { in GetU64()
|
/external/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_posix.h | 118 PosixTransition dst_end; member
|
D | time_zone_posix.cc | 151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
|
/external/libtextclassifier/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_posix.h | 118 PosixTransition dst_end; member
|
D | time_zone_posix.cc | 151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
|
/external/angle/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_posix.h | 118 PosixTransition dst_end; member
|
D | time_zone_posix.cc | 151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
|
/external/openscreen/third_party/abseil/src/absl/time/internal/cctz/src/ |
D | time_zone_posix.h | 118 PosixTransition dst_end; member
|
D | time_zone_posix.cc | 151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
|
/external/webrtc/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_posix.h | 118 PosixTransition dst_end; member
|
D | time_zone_posix.cc | 151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_posix.h | 118 PosixTransition dst_end; member
|
D | time_zone_posix.cc | 151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_meta_blit.c | 574 unsigned dst_start, dst_end; in blit_image() local 578 dst_end = region->dstOffsets[1].z; in blit_image() 581 dst_end = dst_start + dst_res->layerCount; in blit_image() 594 bool flip_z = flip_coords(&src_start, &src_end, &dst_start, &dst_end); in blit_image() 596 (float)(dst_end - dst_start); in blit_image() 602 depth_center_offset = 0.5 / (dst_end - dst_start) * (src_end - src_start); in blit_image() 626 const unsigned num_layers = dst_end - dst_start; in blit_image()
|
/external/OpenCL-CTS/test_conformance/basic/ |
D | test_bufferreadwriterect.cpp | 111 size_t dst_end = dst_start + (region[2] * slice_pitch + in check_overlap_rect() local 122 …t_start && dst_start < src_end) || (dst_start <= src_start && src_start < dst_end)) overlap = true; in check_overlap_rect() 130 …(src_start <= dst_start && dst_start < src_end) || (dst_start <= src_start && src_start < dst_end)) in check_overlap_rect()
|
/external/llvm/include/llvm/Support/ |
D | GCOV.h | 346 EdgeIterator dst_end() const { return DstEdges.end(); } in dst_end() function 348 return make_range(dst_begin(), dst_end()); in dsts()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
D | GCOV.h | 360 EdgeIterator dst_end() const { return DstEdges.end(); } in dst_end() function 362 return make_range(dst_begin(), dst_end()); in dsts()
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/CMSIS/Include/ |
D | arm_math.h | 5862 int32_t rOffset, dst_end; in arm_circularRead_f32() local 5867 dst_end = (int32_t) (dst_base + dst_length); in arm_circularRead_f32() 5880 if(dst == (int32_t *) dst_end) in arm_circularRead_f32() 5961 int32_t rOffset, dst_end; in arm_circularRead_q15() local 5967 dst_end = (int32_t) (dst_base + dst_length); in arm_circularRead_q15() 5980 if(dst == (q15_t *) dst_end) in arm_circularRead_q15() 6061 int32_t rOffset, dst_end; in arm_circularRead_q7() local 6067 dst_end = (int32_t) (dst_base + dst_length); in arm_circularRead_q7() 6080 if(dst == (q7_t *) dst_end) in arm_circularRead_q7()
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/CMSIS/Include/ |
D | arm_math.h | 5862 int32_t rOffset, dst_end; in arm_circularRead_f32() local 5867 dst_end = (int32_t) (dst_base + dst_length); in arm_circularRead_f32() 5880 if(dst == (int32_t *) dst_end) in arm_circularRead_f32() 5961 int32_t rOffset, dst_end; in arm_circularRead_q15() local 5967 dst_end = (int32_t) (dst_base + dst_length); in arm_circularRead_q15() 5980 if(dst == (q15_t *) dst_end) in arm_circularRead_q15() 6061 int32_t rOffset, dst_end; in arm_circularRead_q7() local 6067 dst_end = (int32_t) (dst_base + dst_length); in arm_circularRead_q7() 6080 if(dst == (q7_t *) dst_end) in arm_circularRead_q7()
|