Home
last modified time | relevance | path

Searched refs:dst_end (Results 1 – 25 of 35) sorted by relevance

12

/external/tensorflow/tensorflow/core/kernels/
Dragged_tensor_to_tensor_op.cc488 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/
Dragged_tensor_to_tensor_tflite.cc474 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/
Dhb-ot-name.cc86 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/
Dbrw_fs_register_coalesce.cpp108 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/
Dcfl_ppc.c39 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/
Dmouse_cursor_monitor_x11.cc213 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/
DDataExtractor.cpp407 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/
Dtime_zone_posix.h118 PosixTransition dst_end; member
Dtime_zone_posix.cc151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
/external/libtextclassifier/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.h118 PosixTransition dst_end; member
Dtime_zone_posix.cc151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
/external/angle/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.h118 PosixTransition dst_end; member
Dtime_zone_posix.cc151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
/external/openscreen/third_party/abseil/src/absl/time/internal/cctz/src/
Dtime_zone_posix.h118 PosixTransition dst_end; member
Dtime_zone_posix.cc151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
/external/webrtc/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.h118 PosixTransition dst_end; member
Dtime_zone_posix.cc151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.h118 PosixTransition dst_end; member
Dtime_zone_posix.cc151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
/external/mesa3d/src/amd/vulkan/
Dradv_meta_blit.c574 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/
Dtest_bufferreadwriterect.cpp111 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/
DGCOV.h346 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/
DGCOV.h360 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/
Darm_math.h5862 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/
Darm_math.h5862 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()

12