/external/executorch/backends/vulkan/runtime/graph/ops/glsl/ |
D | flip.glsl | 59 uint src_p = p; 71 src_p = src_c % 4; 75 out_texel[p] = in_texel[src_p];
|
/external/pytorch/aten/src/ATen/native/vulkan/glsl/ |
D | flip.glsl | 56 uint src_p = p; 70 src_p = src_c % 4; 74 out_texel[p] = v[src_p];
|
/external/libaom/aom_dsp/arm/ |
D | highbd_loopfilter_neon.c | 1077 uint16x8_t src_p[4]; in aom_highbd_lpf_vertical_14_neon() local 1078 load_u16_8x4(s - 8, pitch, &src_p[0], &src_p[1], &src_p[2], &src_p[3]); in aom_highbd_lpf_vertical_14_neon() 1080 transpose_array_inplace_u16_4x8(src_p); in aom_highbd_lpf_vertical_14_neon() 1094 vget_high_u16(src_p[2]), vget_high_u16(src_p[3]), vget_low_u16(src_q[0]), in aom_highbd_lpf_vertical_14_neon() 1096 const uint16x8_t p0q0 = vextq_u16(src_p[3], src_q[0], 4); in aom_highbd_lpf_vertical_14_neon() 1097 const uint16x8_t p1q1 = vextq_u16(src_p[2], src_q[1], 4); in aom_highbd_lpf_vertical_14_neon() 1098 const uint16x8_t p2q2 = vextq_u16(src_p[1], src_q[2], 4); in aom_highbd_lpf_vertical_14_neon() 1099 const uint16x8_t p3q3 = vextq_u16(src_p[0], src_q[3], 4); in aom_highbd_lpf_vertical_14_neon() 1112 vcombine_u16(vget_low_u16(src_p[3]), vget_high_u16(src_q[0])); in aom_highbd_lpf_vertical_14_neon() 1114 vcombine_u16(vget_low_u16(src_p[2]), vget_high_u16(src_q[1])); in aom_highbd_lpf_vertical_14_neon() [all …]
|
/external/libgav1/src/dsp/arm/ |
D | loop_filter_10bit_neon.cc | 1045 uint16x8_t src_p[4] = {vld1q_u16(dst_0), vld1q_u16(dst_1), vld1q_u16(dst_2), in Vertical14_NEON() local 1048 Transpose4x8(src_p); in Vertical14_NEON() 1062 vget_high_u16(src_p[2]), vget_high_u16(src_p[3]), vget_low_u16(src_q[0]), in Vertical14_NEON() 1064 const uint16x8_t p0q0 = vextq_u16(src_p[3], src_q[0], 4); in Vertical14_NEON() 1065 const uint16x8_t p1q1 = vextq_u16(src_p[2], src_q[1], 4); in Vertical14_NEON() 1066 const uint16x8_t p2q2 = vextq_u16(src_p[1], src_q[2], 4); in Vertical14_NEON() 1067 const uint16x8_t p3q3 = vextq_u16(src_p[0], src_q[3], 4); in Vertical14_NEON() 1081 vcombine_u16(vget_low_u16(src_p[3]), vget_high_u16(src_q[0])); in Vertical14_NEON() 1083 vcombine_u16(vget_low_u16(src_p[2]), vget_high_u16(src_q[1])); in Vertical14_NEON() 1085 vcombine_u16(vget_low_u16(src_p[1]), vget_high_u16(src_q[2])); in Vertical14_NEON() [all …]
|
/external/mesa3d/src/compiler/nir/ |
D | nir_split_vars.c | 704 nir_deref_instr *dst_p, *src_p; in emit_split_copies() local 714 while ((src_p = src_path->path[src_level + 1])) { in emit_split_copies() 715 if (src_p->deref_type == nir_deref_type_array_wildcard) in emit_split_copies() 718 src = nir_build_deref_follower(b, src, src_p); in emit_split_copies() 722 if (src_p == NULL || dst_p == NULL) { in emit_split_copies() 723 assert(src_p == NULL && dst_p == NULL); in emit_split_copies() 727 src_p->deref_type == nir_deref_type_array_wildcard); in emit_split_copies()
|
D | nir_opt_copy_prop_vars.c | 847 nir_deref_instr **src_p = &src_path->path[1]; in load_from_deref_entry_value() local 848 while (*entry_p && *src_p) { in load_from_deref_entry_value() 850 nir_deref_instr *src_tail = *src_p++; in load_from_deref_entry_value() 878 while (*src_p) { in load_from_deref_entry_value() 879 nir_deref_instr *src_tail = *src_p++; in load_from_deref_entry_value()
|
/external/skia/src/core/ |
D | SkBlitter_A8.cpp | 117 static uint8_t src_p (uint8_t src, uint8_t dst) { return src; } in src_p() function 156 {SkBlendMode::kSrc, WRAP_BLIT(src_p, false)},
|
/external/tensorflow/tensorflow/core/util/ |
D | batch_util.cc | 273 const T* src_p = src.base<T>() + (src_chip_size * src_offset); \ in CopyContiguousSlices() 275 HandleSliceToElement<T>(src_p, dst_p, src_chip_size * num_slices); \ in CopyContiguousSlices()
|
/external/libbpf/src/ |
D | linker.c | 1766 struct btf_param *src_p, *dst_p; in complete_extern_btf_info() local 1795 src_p = btf_params(src_t); in complete_extern_btf_info() 1797 for (i = 0, n = btf_vlen(dst_t); i < n; i++, src_p++, dst_p++) { in complete_extern_btf_info() 1798 if (!src_p->name_off) in complete_extern_btf_info() 1802 s = btf__str_by_offset(src_btf, src_p->name_off); in complete_extern_btf_info()
|
/external/libaom/av1/common/ |
D | restoration.c | 403 const uint8_t *src_p = src + j; in wiener_filter_stripe() local 406 src_p, src_stride, dst_p, dst_stride, rui->wiener_info.hfilter, 16, in wiener_filter_stripe()
|
/external/pytorch/torch/csrc/autograd/ |
D | FunctionsManual.h | 1047 const Tensor& src_p,
|
D | FunctionsManual.cpp | 6783 const Tensor& src_p, in scatter_reduce_jvp() argument 6797 auto mask_src = src_p == gather_result; in scatter_reduce_jvp()
|