/external/opencv3/modules/hal/include/opencv2/hal/ |
D | intrin_neon.hpp | 155 struct v_int32x4 struct 160 v_int32x4() {} in v_int32x4() function 161 explicit v_int32x4(int32x4_t v) : val(v) {} in v_int32x4() argument 162 v_int32x4(int v0, int v1, int v2, int v3) in v_int32x4() argument 240 inline v_int32x4 v_reinterpret_as_s32(const v_##_Tpv& v) { return v_int32x4(vreinterpretq_s32_##suf… 284 OPENCV_HAL_IMPL_NEON_PACK(v_uint16x8, ushort, uint16x4_t, u16, v_int32x4, s32, pack_u, un) 285 OPENCV_HAL_IMPL_NEON_PACK(v_int16x8, short, int16x4_t, s16, v_int32x4, s32, pack, n) 287 OPENCV_HAL_IMPL_NEON_PACK(v_int32x4, int, int32x2_t, s32, v_int64x2, s64, pack, n) 322 OPENCV_HAL_IMPL_NEON_BIN_OP(+, v_int32x4, vaddq_s32) 323 OPENCV_HAL_IMPL_NEON_BIN_OP(-, v_int32x4, vsubq_s32) [all …]
|
D | intrin_sse.hpp | 157 struct v_int32x4 struct 162 v_int32x4() {} in v_int32x4() function 163 explicit v_int32x4(__m128i v) : val(v) {} in v_int32x4() argument 164 v_int32x4(int v0, int v1, int v2, int v3) in v_int32x4() argument 262 OPENCV_HAL_IMPL_SSE_INITVEC(v_int32x4, int, s32, si128, epi32, int, OPENCV_HAL_NOP) in OPENCV_HAL_IMPL_SSE_INITVEC() 295 OPENCV_HAL_IMPL_SSE_INIT_FROM_FLT(v_int32x4, s32) in OPENCV_HAL_IMPL_SSE_INIT_FROM_FLT() 418 inline v_uint16x8 v_pack_u(const v_int32x4& a, const v_int32x4& b) in v_pack_u() 425 inline void v_pack_u_store(ushort* ptr, const v_int32x4& a) in v_pack_u_store() 434 void v_rshr_pack_u_store(ushort* ptr, const v_int32x4& a) in v_rshr_pack_u_store() 442 inline v_int16x8 v_pack(const v_int32x4& a, const v_int32x4& b) in v_pack() [all …]
|
D | intrin_cpp.hpp | 712 typedef v_reg<int, 4> v_int32x4; typedef 731 OPENCV_HAL_IMPL_C_INIT(v_int32x4, int, s32) in OPENCV_HAL_IMPL_C_INIT() 753 OPENCV_HAL_IMPL_C_SHIFT(v_int32x4, int) 794 OPENCV_HAL_IMPL_C_PACK(v_int32x4, int, v_int16x8, short, pack) 795 OPENCV_HAL_IMPL_C_PACK(v_int32x4, int, v_uint16x8, ushort, pack_u) 797 OPENCV_HAL_IMPL_C_PACK(v_int64x2, int64, v_int32x4, int, pack)
|
/external/opencv3/modules/core/src/ |
D | mathfuncs.cpp | 940 v_int32x4 v_1 = v_setall_s32(1); in operator ()() 944 v_int32x4 v_a1 = v_1, v_a2 = v_1; in operator ()() 946 v_int32x4 v_b1, v_b2; in operator ()() 1018 v_int32x4 v_1 = v_setall_s32(1); in operator ()() 1022 v_int32x4 v_a1 = v_1, v_a2 = v_1; in operator ()() 1024 v_int32x4 v_b1, v_b2; in operator ()() 1057 v_int32x4 v_1 = v_setall_s32(1); in operator ()() 1061 v_int32x4 v_a1 = v_1, v_a2 = v_1; in operator ()() 1062 v_int32x4 v_b1 = v_load(src + i), v_b2 = v_load(src + i + 4); in operator ()()
|
D | arithm.cpp | 2830 v_int32x4 i0 = v_round(f0), i1 = v_round(f1); in operator ()() 2863 v_int32x4 t0, t1, t2, t3; in operator ()() 2876 v_int32x4 i0 = v_round(f0), i1 = v_round(f1); in operator ()() 2922 v_int32x4 i0 = v_round(f0), i1 = v_round(f1); in operator ()() 2954 v_int32x4 t0, t1, t2, t3; in operator ()() 2967 v_int32x4 i0 = v_round(f0), i1 = v_round(f1); in operator ()() 2992 v_int32x4 v_zero = v_setzero_s32(); in operator ()() 2996 v_int32x4 t0 = v_load(src1 + x); in operator ()() 2997 v_int32x4 t1 = v_load(src1 + x + 4); in operator ()() 2998 v_int32x4 t2 = v_load(src2 + x); in operator ()() [all …]
|