Home
last modified time | relevance | path

Searched refs:v_dst (Results 1 – 25 of 213) sorted by relevance

123456789

/dports/graphics/opencv/opencv-4.5.3/3rdparty/carotene/src/
H A Dchannels_combine.cpp264 uint8x16x4_t v_dst; in combineYUYV() local
265 v_dst.val[0] = v_y.val[0]; in combineYUYV()
267 v_dst.val[2] = v_y.val[1]; in combineYUYV()
269 vst4q_u8(dst + dj, v_dst); in combineYUYV()
272 v_dst.val[0] = v_y.val[0]; in combineYUYV()
274 v_dst.val[2] = v_y.val[1]; in combineYUYV()
283 uint8x8x4_t v_dst; in combineYUYV() local
288 vst4_u8(dst + dj, v_dst); in combineYUYV()
341 uint8x16x4_t v_dst; in combineUYVY() local
360 uint8x8x4_t v_dst; in combineUYVY() local
[all …]
H A Dbitwise.cpp52 uint8x16_t & v_dst) const in operator ()()
54 v_dst = vandq_u8(v_src0, v_src1); in operator ()()
58 uint8x8_t & v_dst) const in operator ()()
60 v_dst = vand_u8(v_src0, v_src1); in operator ()()
76 v_dst = vorrq_u8(v_src0, v_src1); in operator ()()
80 uint8x8_t & v_dst) const in operator ()()
82 v_dst = vorr_u8(v_src0, v_src1); in operator ()()
98 v_dst = veorq_u8(v_src0, v_src1); in operator ()()
102 uint8x8_t & v_dst) const in operator ()()
104 v_dst = veor_u8(v_src0, v_src1); in operator ()()
[all …]
H A Dcmp.cpp81 uvec128 v_dst; in compare() local
85 op(v_src0, v_src1, v_dst); in compare()
106 uvec128 v_dst; in compare() local
110 op(v_src0, v_src1, v_dst); in compare()
111 internal::vst1q(dst + x, v_dst); in compare()
117 uvec64 v_dst; in compare() local
121 op(v_src0, v_src1, v_dst); in compare()
122 internal::vst1(dst + x, v_dst); in compare()
194 v_dst = internal::vceq(v_src0, v_src1); in operator ()()
240 v_dst = internal::vcgt(v_src0, v_src1); in operator ()()
[all …]
H A Dflip.cpp85 vec128 v_dst = vrev64q(v_src); in flip() local
86 v_dst = vcombine(vget_high(v_dst), vget_low(v_dst)); in flip()
87 vst1q(dst + jd - step_base, v_dst); in flip()
131 vec128 v_src = vld3q(src + js), v_dst; in flip3() local
136 v_dst.val[0] = vcombine(vget_high(v_src.val[0]), vget_low(v_src.val[0])); in flip3()
140 vst3q(dst + jd - step_base3, v_dst); in flip3()
146 vec64 v_src = vld3(src + js), v_dst; in flip3() local
147 v_dst.val[0] = vrev64(v_src.val[0]); in flip3()
148 v_dst.val[1] = vrev64(v_src.val[1]); in flip3()
149 v_dst.val[2] = vrev64(v_src.val[2]); in flip3()
[all …]
H A Dadd_weighted.cpp73 typename VecTraits<T>::vec128 & v_dst) const in operator ()()
79 v_dst = vcombine(vqmovn(vrl), vqmovn(vrh)); in operator ()()
84 typename VecTraits<T>::vec64 & v_dst) const in operator ()()
89 v_dst = vqmovn(vr); in operator ()()
121 v_dst = vcvtq_s32_f32(vs1); in operator ()()
126 typename VecTraits<s32>::vec64 & v_dst) const in operator ()()
133 v_dst = vcvt_s32_f32(vs1); in operator ()()
165 v_dst = vcvtq_u32_f32(vs1); in operator ()()
177 v_dst = vcvt_u32_f32(vs1); in operator ()()
205 v_dst = vmlaq_f32(vs1, v_src1, vbeta); in operator ()()
[all …]
H A Dmin_max.cpp58 typename internal::VecTraits<T>::vec128 & v_dst) const in operator ()()
60 v_dst = internal::vminq(v_src0, v_src1); in operator ()()
65 typename internal::VecTraits<T>::vec64 & v_dst) const in operator ()()
67 v_dst = internal::vmin(v_src0, v_src1); in operator ()()
83 typename internal::VecTraits<T>::vec128 & v_dst) const in operator ()()
85 v_dst = internal::vmaxq(v_src0, v_src1); in operator ()()
90 typename internal::VecTraits<T>::vec64 & v_dst) const in operator ()()
92 v_dst = internal::vmax(v_src0, v_src1); in operator ()()
H A Daccumulate.cpp82 v_dst = vqaddq_s16(v_dst, v_src16); in accumulate()
83 vst1q_s16(dst + j, v_dst); in accumulate()
144 vst1q_s16(dst + j, v_dst); in accumulateSquareConst()
195v_dst = vcombine_s16(vqmovn_s32(vaddw_s16(vmull_s16(v_srclo, v_srclo), vget_low_s16(v_dst))), in accumulateSquareConst()
197 vst1q_s16(dst + j, v_dst); in accumulateSquareConst()
278 uint8x16_t & v_dst) const in operator ()()
280 v_dst = vhaddq_u8(v_src0, v_src1); in operator ()()
284 uint8x8_t & v_dst) const in operator ()()
286 v_dst = vhadd_u8(v_src0, v_src1); in operator ()()
334 uint8x8_t & v_dst) const in operator ()()
[all …]
H A Dmagnitude.cpp56 int16x8_t & v_dst) const in operator ()()
69 v_dst = vcombine_s16(vqmovn_s32(v_sqrt0), vqmovn_s32(v_sqrt1)); in operator ()()
73 int16x4_t & v_dst) const in operator ()()
78 v_dst = vqmovn_s32(v_sqrt); in operator ()()
93 float32x4_t & v_dst) const in operator ()()
95v_dst = internal::vsqrtq_f32(vaddq_f32(vmulq_f32(v_src0, v_src0), vmulq_f32(v_src1, v_src1))); in operator ()()
99 float32x2_t & v_dst) const in operator ()()
101 v_dst = internal::vsqrt_f32(vadd_f32(vmul_f32(v_src0, v_src0), vmul_f32(v_src1, v_src1))); in operator ()()
H A Dconvert_depth.cpp76 int16x8_t v_dst = vreinterpretq_s16_u16(vmovl_u8(vld1_u8(src + j))); in lshiftConst() local
77 vst1q_s16(dst + j, vshlq_n_s16(v_dst, shift)); in lshiftConst()
113 int16x8_t v_dst = vreinterpretq_s16_u16(vmovl_u8(vld1_u8(src + j))); in lshiftConst() local
114 vst1q_s16(dst + j, v_dst); in lshiftConst()
146 uint8x16_t v_dst = vcombine_u8(vqmovun_s16(v_src0), in rshiftConst() local
148 vst1q_u8(dst + j, v_dst); in rshiftConst()
168 int8x16_t v_dst = vcombine_s8(vmovn_s16(v_src0), in rshiftConst() local
170 vst1q_u8(dst + j, vreinterpretq_u8_s8(v_dst)); in rshiftConst()
208 vst1q_u8(dst + j, v_dst); in rshiftConst()
228 vst1q_u8(dst + j, vreinterpretq_u8_s8(v_dst)); in rshiftConst()
[all …]
H A Dabsdiff.cpp58 typename internal::VecTraits<T>::vec128 & v_dst) const in operator ()()
60 v_dst = internal::vabdq(v_src0, v_src1); in operator ()()
65 typename internal::VecTraits<T>::vec64 & v_dst) const in operator ()()
67 v_dst = internal::vabd(v_src0, v_src1); in operator ()()
83 typename internal::VecTraits<T>::vec128 & v_dst) const in operator ()()
87 v_dst = internal::vqsubq(v_max, v_min); in operator ()()
92 typename internal::VecTraits<T>::vec64 & v_dst) const in operator ()()
96 v_dst = internal::vqsub(v_max, v_min); in operator ()()
/dports/devel/valgrind-lts/valgrind-dragonfly-dragonfly/VEX/priv/
H A Dhost_mips_isel.c2788 return v_dst; in iselV128Expr_wrk()
2803 return v_dst; in iselV128Expr_wrk()
3055 MIPSInstr_Msa2RF(MSA_FEXUPR, MSA_F_WH, v_dst, v_dst)); in iselV128Expr_wrk()
3106 MIPSInstr_Msa3R(MSA_CEQ, MSA_B, v_dst, v_src, v_dst)); in iselV128Expr_wrk()
3107 addInstr(env, MIPSInstr_MsaVec(MSA_NORV, v_dst, v_dst, v_dst)); in iselV128Expr_wrk()
3116 MIPSInstr_Msa3R(MSA_CEQ, MSA_H, v_dst, v_src, v_dst)); in iselV128Expr_wrk()
3117 addInstr(env, MIPSInstr_MsaVec(MSA_NORV, v_dst, v_dst, v_dst)); in iselV128Expr_wrk()
3127 addInstr(env, MIPSInstr_MsaVec(MSA_NORV, v_dst, v_dst, v_dst)); in iselV128Expr_wrk()
3137 addInstr(env, MIPSInstr_MsaVec(MSA_NORV, v_dst, v_dst, v_dst)); in iselV128Expr_wrk()
4781 return v_dst; in iselV128Expr_wrk()
[all …]
/dports/devel/valgrind/valgrind-dragonfly-dragonfly/VEX/priv/
H A Dhost_mips_isel.c2788 return v_dst; in iselV128Expr_wrk()
2803 return v_dst; in iselV128Expr_wrk()
3055 MIPSInstr_Msa2RF(MSA_FEXUPR, MSA_F_WH, v_dst, v_dst)); in iselV128Expr_wrk()
3106 MIPSInstr_Msa3R(MSA_CEQ, MSA_B, v_dst, v_src, v_dst)); in iselV128Expr_wrk()
3107 addInstr(env, MIPSInstr_MsaVec(MSA_NORV, v_dst, v_dst, v_dst)); in iselV128Expr_wrk()
3116 MIPSInstr_Msa3R(MSA_CEQ, MSA_H, v_dst, v_src, v_dst)); in iselV128Expr_wrk()
3117 addInstr(env, MIPSInstr_MsaVec(MSA_NORV, v_dst, v_dst, v_dst)); in iselV128Expr_wrk()
3127 addInstr(env, MIPSInstr_MsaVec(MSA_NORV, v_dst, v_dst, v_dst)); in iselV128Expr_wrk()
3137 addInstr(env, MIPSInstr_MsaVec(MSA_NORV, v_dst, v_dst, v_dst)); in iselV128Expr_wrk()
4781 return v_dst; in iselV128Expr_wrk()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/microblaze/lib/
H A Dmemmove.c35 void *memmove(void *v_dst, const void *v_src, __kernel_size_t c) in memmove() argument
38 char *dst = v_dst; in memmove()
41 return v_dst; in memmove()
44 if (v_dst <= v_src) in memmove()
45 return memcpy(v_dst, v_src, c); in memmove()
55 return v_dst; in memmove()
61 char *dst = v_dst; in memmove()
66 return v_dst; in memmove()
69 if (v_dst <= v_src) in memmove()
70 return memcpy(v_dst, v_src, c); in memmove()
[all …]
H A Dmemcpy.c36 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) in memcpy() argument
39 char *dst = v_dst; in memcpy()
45 return v_dst; in memcpy()
48 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) in memcpy() argument
51 char *dst = v_dst; in memcpy()
189 return v_dst; in memcpy()
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/microblaze/lib/
H A Dmemmove.c35 void *memmove(void *v_dst, const void *v_src, __kernel_size_t c) in memmove() argument
38 char *dst = v_dst; in memmove()
41 return v_dst; in memmove()
44 if (v_dst <= v_src) in memmove()
45 return memcpy(v_dst, v_src, c); in memmove()
55 return v_dst; in memmove()
61 char *dst = v_dst; in memmove()
66 return v_dst; in memmove()
69 if (v_dst <= v_src) in memmove()
70 return memcpy(v_dst, v_src, c); in memmove()
[all …]
H A Dmemcpy.c36 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) in memcpy() argument
39 char *dst = v_dst; in memcpy()
45 return v_dst; in memcpy()
48 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) in memcpy() argument
51 char *dst = v_dst; in memcpy()
189 return v_dst; in memcpy()
/dports/multimedia/libv4l/linux-5.13-rc2/arch/microblaze/lib/
H A Dmemmove.c35 void *memmove(void *v_dst, const void *v_src, __kernel_size_t c) in memmove() argument
38 char *dst = v_dst; in memmove()
41 return v_dst; in memmove()
44 if (v_dst <= v_src) in memmove()
45 return memcpy(v_dst, v_src, c); in memmove()
55 return v_dst; in memmove()
61 char *dst = v_dst; in memmove()
66 return v_dst; in memmove()
69 if (v_dst <= v_src) in memmove()
70 return memcpy(v_dst, v_src, c); in memmove()
[all …]
H A Dmemcpy.c36 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) in memcpy() argument
39 char *dst = v_dst; in memcpy()
45 return v_dst; in memcpy()
48 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) in memcpy() argument
51 char *dst = v_dst; in memcpy()
189 return v_dst; in memcpy()
/dports/graphics/opencv/opencv-4.5.3/cmake/checks/
H A Dcpu_fp16.cpp10 __m128i v_dst = _mm_cvtps_ph(v_src, 0); in test() local
11 _mm_storel_epi64((__m128i*)dst, v_dst); in test()
21 float16x4_t v_dst = vcvt_f16_f32(v_src); in test() local
22 *(float16x4_t*)dst = v_dst; in test()
/dports/multimedia/libxine/xine-lib-1.2.11/src/xine-utils/
H A Dcopy.c50 const unsigned char *v_src, int v_src_pitch, unsigned char *v_dst, int v_dst_pitch, in yv12_to_yv12() argument
55 _copy_plane(v_dst, v_src, v_dst_pitch, v_src_pitch, width/2, height/2); in yv12_to_yv12()
70 uint8_t *restrict v_dst, int v_dst_pitch, in _x_nv12_to_yv12() argument
80 v_dst[x] = uv_src[2*x + 1]; in _x_nv12_to_yv12()
84 v_dst += v_dst_pitch; in _x_nv12_to_yv12()
/dports/multimedia/libva-utils/libva-utils-2.13.0/videoprocess/
H A Dvppdenoise.cpp196 unsigned char *v_dst = NULL; in upload_yuv_frame_to_yuv_surface() local
248 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
377 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
386 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
443 unsigned char *v_dst = NULL; in store_yuv_surface_to_yv12_file() local
469 v_dst = newImageBuffer + y_size; in store_yuv_surface_to_yv12_file()
555 unsigned char *v_dst = NULL; in store_yuv_surface_to_i420_file() local
667 unsigned char *v_dst = NULL; in store_yuv_surface_to_nv12_file() local
836 unsigned char *v_dst = NULL; in store_yuv_surface_to_10bit_file() local
878 v_dst += surface_image.width; in store_yuv_surface_to_10bit_file()
[all …]
H A Dvppscaling_csc.cpp172 unsigned char *v_dst = NULL; in upload_yuv_frame_to_yuv_surface() local
224 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
353 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
362 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
419 unsigned char *v_dst = NULL; in store_yuv_surface_to_yv12_file() local
445 v_dst = newImageBuffer + y_size; in store_yuv_surface_to_yv12_file()
531 unsigned char *v_dst = NULL; in store_yuv_surface_to_i420_file() local
643 unsigned char *v_dst = NULL; in store_yuv_surface_to_nv12_file() local
812 unsigned char *v_dst = NULL; in store_yuv_surface_to_10bit_file() local
854 v_dst += surface_image.width; in store_yuv_surface_to_10bit_file()
[all …]
H A Dvppsharpness.cpp196 unsigned char *v_dst = NULL; in upload_yuv_frame_to_yuv_surface() local
248 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
377 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
386 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
443 unsigned char *v_dst = NULL; in store_yuv_surface_to_yv12_file() local
469 v_dst = newImageBuffer + y_size; in store_yuv_surface_to_yv12_file()
555 unsigned char *v_dst = NULL; in store_yuv_surface_to_i420_file() local
667 unsigned char *v_dst = NULL; in store_yuv_surface_to_nv12_file() local
836 unsigned char *v_dst = NULL; in store_yuv_surface_to_10bit_file() local
878 v_dst += surface_image.width; in store_yuv_surface_to_10bit_file()
[all …]
H A Dvppchromasitting.cpp172 unsigned char *v_dst = NULL; in upload_yuv_frame_to_yuv_surface() local
224 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
353 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
362 v_dst = u_dst; in upload_yuv_frame_to_yuv_surface()
419 unsigned char *v_dst = NULL; in store_yuv_surface_to_yv12_file() local
445 v_dst = newImageBuffer + y_size; in store_yuv_surface_to_yv12_file()
531 unsigned char *v_dst = NULL; in store_yuv_surface_to_i420_file() local
643 unsigned char *v_dst = NULL; in store_yuv_surface_to_nv12_file() local
812 unsigned char *v_dst = NULL; in store_yuv_surface_to_10bit_file() local
854 v_dst += surface_image.width; in store_yuv_surface_to_10bit_file()
[all …]
/dports/graphics/blender/blender-2.91.0/source/blender/bmesh/intern/
H A Dbmesh_mesh_duplicate.c35 BMVert *v_dst = BM_vert_create(bm_dst, v_src->co, NULL, BM_CREATE_SKIP_CD); in bm_vert_copy() local
36 BM_elem_attrs_copy(bm_src, bm_dst, v_src, v_dst); in bm_vert_copy()
37 return v_dst; in bm_vert_copy()
108 BMVert *v_dst = bm_vert_copy(bm_src, bm_dst, v_src); in BM_mesh_copy_arrays() local
109 BM_elem_index_set(v_dst, i); /* set_ok */ in BM_mesh_copy_arrays()
110 verts_dst[i] = v_dst; in BM_mesh_copy_arrays()

123456789