Searched refs:v_float64x2 (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/hal/include/opencv2/hal/ |
D | intrin_sse.hpp | 233 struct v_float64x2 struct 238 v_float64x2() {} in v_float64x2() argument 239 explicit v_float64x2(__m128d v) : val(v) {} in v_float64x2() function 240 v_float64x2(double v0, double v1) in v_float64x2() function 264 OPENCV_HAL_IMPL_SSE_INITVEC(v_float64x2, double, f64, pd, pd, double, _mm_castsi128_pd) in OPENCV_HAL_IMPL_SSE_INITVEC() 279 inline v_float64x2 v_reinterpret_as_f64(const v_uint64x2& a) in v_reinterpret_as_f64() 280 { return v_float64x2(_mm_castsi128_pd(a.val)); } in v_reinterpret_as_f64() 281 inline v_float64x2 v_reinterpret_as_f64(const v_int64x2& a) in v_reinterpret_as_f64() 282 { return v_float64x2(_mm_castsi128_pd(a.val)); } in v_reinterpret_as_f64() 287 inline _Tpvec v_reinterpret_as_##suffix(const v_float64x2& a) \ [all …]
|
D | intrin_cpp.hpp | 715 typedef v_reg<double, 2> v_float64x2; typedef 733 OPENCV_HAL_IMPL_C_INIT(v_float64x2, double, f64) in OPENCV_HAL_IMPL_C_INIT()
|
/external/opencv3/modules/hal/src/ |
D | mathfuncs.cpp | 219 v_float64x2 x0 = v_load(x + i), x1 = v_load(x + i + 2); in magnitude() 220 v_float64x2 y0 = v_load(y + i), y1 = v_load(y + i + 2); in magnitude() 332 v_float64x2 t0 = v_load(src + i), t1 = v_load(src + i + 2); in sqrt()
|
/external/opencv3/modules/core/src/ |
D | arithm.cpp | 3314 v_float64x2 v_scale = v_setall_f64(scale); in operator ()() 3315 v_float64x2 v_zero = v_setzero_f64(); in operator ()() 3319 v_float64x2 f0 = v_load(src1 + x); in operator ()() 3320 v_float64x2 f1 = v_load(src1 + x + 2); in operator ()() 3321 v_float64x2 f2 = v_load(src2 + x); in operator ()() 3322 v_float64x2 f3 = v_load(src2 + x + 2); in operator ()() 3324 v_float64x2 res0 = f0 * v_scale / f2; in operator ()() 3325 v_float64x2 res1 = f1 * v_scale / f3; in operator ()() 3351 v_float64x2 v_scale = v_setall_f64(scale); in operator ()() 3352 v_float64x2 v_zero = v_setzero_f64(); in operator ()() [all …]
|
D | mathfuncs.cpp | 1137 v_float64x2 v_1 = v_setall_f64(1.); in operator ()() 1141 v_float64x2 v_a1 = v_1, v_a2 = v_1; in operator ()() 1142 v_float64x2 v_b1 = v_load(src + i), v_b2 = v_load(src + i + 2); in operator ()()
|