HomeSort by relevance Sort by last modified time
    Searched full:v_float32x4 (Results 1 - 6 of 6) sorted by null

  /external/opencv3/modules/hal/include/opencv2/hal/
intrin_neon.hpp 174 struct v_float32x4 struct in namespace:cv
179 v_float32x4() {} function in struct:cv::v_float32x4
180 explicit v_float32x4(float32x4_t v) : val(v) {} function in struct:cv::v_float32x4
181 v_float32x4(float v0, float v1, float v2, float v3) function in struct:cv::v_float32x4
243 inline v_float32x4 v_reinterpret_as_f32(const v_##_Tpv& v) { return v_float32x4(vreinterpretq_f32_##suffix(v.val)); }
289 inline v_float32x4 v_matmul(const v_float32x4& v, const v_float32x4& m0,
290 const v_float32x4& m1, const v_float32x4& m2
    [all...]
intrin_sse.hpp 175 struct v_float32x4 struct in namespace:cv
180 v_float32x4() {} function in struct:cv::v_float32x4
181 explicit v_float32x4(__m128 v) : val(v) {} function in struct:cv::v_float32x4
182 v_float32x4(float v0, float v1, float v2, float v3) function in struct:cv::v_float32x4
263 OPENCV_HAL_IMPL_SSE_INITVEC(v_float32x4, float, f32, ps, ps, float, _mm_castsi128_ps)
275 inline v_float32x4 v_reinterpret_as_f32(const v_uint64x2& a)
276 { return v_float32x4(_mm_castsi128_ps(a.val)); }
277 inline v_float32x4 v_reinterpret_as_f32(const v_int64x2& a)
278 { return v_float32x4(_mm_castsi128_ps(a.val)); }
285 inline _Tpvec v_reinterpret_as_##suffix(const v_float32x4& a)
    [all...]
intrin_cpp.hpp 713 typedef v_reg<float, 4> v_float32x4;
732 OPENCV_HAL_IMPL_C_INIT(v_float32x4, float, f32)
799 inline v_float32x4 v_matmul(const v_float32x4& v, const v_float32x4& m0,
800 const v_float32x4& m1, const v_float32x4& m2,
801 const v_float32x4& m3)
803 return v_float32x4(v.s[0]*m0.s[0] + v.s[1]*m1.s[0] + v.s[2]*m2.s[0] + v.s[3]*m3.s[0],
  /external/opencv3/modules/core/src/
arithm.cpp     [all...]
mathfuncs.cpp     [all...]
  /external/opencv3/modules/hal/src/
mathfuncs.cpp 183 v_float32x4 x0 = v_load(x + i), x1 = v_load(x + i + 4);
184 v_float32x4 y0 = v_load(y + i), y1 = v_load(y + i + 4);
255 v_float32x4 t0 = v_load(src + i), t1 = v_load(src + i + 4);
301 v_float32x4 t0 = v_load(src + i), t1 = v_load(src + i + 4);
    [all...]

Completed in 273 milliseconds