Searched defs:v_float32x4 (Results 1 – 3 of 3) sorted by relevance
174 struct v_float32x4 struct176 typedef float lane_type;177 enum { nlanes = 4 };179 v_float32x4() {} in v_float32x4() argument180 explicit v_float32x4(float32x4_t v) : val(v) {} in v_float32x4() argument181 v_float32x4(float v0, float v1, float v2, float v3) in v_float32x4() argument186 float get0() const in get0()190 float32x4_t val;
175 struct v_float32x4 struct177 typedef float lane_type;178 enum { nlanes = 4 };180 v_float32x4() {} in v_float32x4() argument181 explicit v_float32x4(__m128 v) : val(v) {} in v_float32x4() argument182 v_float32x4(float v0, float v1, float v2, float v3) in v_float32x4() function186 float get0() const in get0()190 __m128 val;844 OPENCV_HAL_IMPL_SSE_FLT_CMP_OP(v_float32x4, ps) in OPENCV_HAL_IMPL_SSE_FLT_CMP_OP() argument
713 typedef v_reg<float, 4> v_float32x4; typedef