Searched refs:_mm_max_ps (Results 1 – 14 of 14) sorted by relevance
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | simd_vec4.inl | 414 return _mm_max_ps(x.Data, y.Data); 423 return _mm_max_ps(x.Data, _mm_set1_ps(y)); 465 return _mm_max_ps(_mm_min_ps(cmp0, _mm_setzero_ps()), detail::one); 475 return _mm_max_ps(_mm_min_ps(cmp0, _mm_setzero_ps()), detail::one);
|
/external/skia/src/opts/ |
D | SkNx_sse.h | 53 static SkNx Max(const SkNx& l, const SkNx& r) { return _mm_max_ps(l.fVec, r.fVec); } in Max() 101 static SkNx Max(const SkNx& l, const SkNx& r) { return _mm_max_ps(l.fVec, r.fVec); } in Max()
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | intrinsic_common.inl | 246 //GLM_FUNC_QUALIFIER __m128 _mm_max_ps(__m128 x, __m128 y) 251 __m128 max0 = _mm_max_ps(min0, minVal);
|
/external/opencv3/modules/core/src/ |
D | convert.cpp | 1484 v_dst1 = _mm_max_ps(_mm_sub_ps(v_zero_f, v_dst1), v_dst1); in operator ()() 1486 v_dst2 = _mm_max_ps(_mm_sub_ps(v_zero_f, v_dst2), v_dst2); in operator ()() 1488 v_dst3 = _mm_max_ps(_mm_sub_ps(v_zero_f, v_dst3), v_dst3); in operator ()() 1490 v_dst4 = _mm_max_ps(_mm_sub_ps(v_zero_f, v_dst4), v_dst4); in operator ()() 1523 v_dst1 = _mm_max_ps(_mm_sub_ps(v_zero_f, v_dst1), v_dst1); in operator ()() 1526 v_dst2 = _mm_max_ps(_mm_sub_ps(v_zero_f, v_dst2), v_dst2); in operator ()() 1529 v_dst3 = _mm_max_ps(_mm_sub_ps(v_zero_f, v_dst3), v_dst3); in operator ()() 1532 v_dst4 = _mm_max_ps(_mm_sub_ps(v_zero_f, v_dst4), v_dst4); in operator ()() 1562 v_dst1 = _mm_max_ps(_mm_sub_ps(v_zero_f, v_dst1), v_dst1); in operator ()() 1564 v_dst2 = _mm_max_ps(_mm_sub_ps(v_zero_f, v_dst2), v_dst2); in operator ()() [all …]
|
D | arithm.cpp | 545 FUNCTOR_CLOSURE_2arg(VMax, float, return _mm_max_ps(a, b));
|
/external/eigen/Eigen/src/Core/arch/SSE/ |
D | PacketMath.h | 190 …NG_INLINE Packet4f pmax<Packet4f>(const Packet4f& a, const Packet4f& b) { return _mm_max_ps(a,b); } 582 Packet4f tmp = _mm_max_ps(a, _mm_movehl_ps(a,a));
|
/external/opencv3/modules/hal/src/ |
D | mathfuncs.cpp | 88 __m128 tmin = _mm_min_ps(ax, ay), tmax = _mm_max_ps(ax, ay); in fastAtan2() 483 xf0 = _mm_min_ps(_mm_max_ps(xf0, minval4), maxval4); in exp() 484 xf1 = _mm_min_ps(_mm_max_ps(xf1, minval4), maxval4); in exp()
|
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_core_sse2.c | 335 const __m128 x_max = _mm_max_ps(x_min, *((__m128*)min_input)); in mm_pow_ps() 522 vec_xfw_sumsq = _mm_max_ps(vec_xfw_sumsq, vec_15); in SmoothedPSD()
|
/external/clang/lib/Headers/ |
D | xmmintrin.h | 152 _mm_max_ps(__m128 __a, __m128 __b) in _mm_max_ps() function
|
/external/opencv3/modules/imgproc/src/ |
D | shapedescr.cpp | 527 maxvalf = _mm_max_ps(maxvalf, ptXY); in pointSetBoundingRect()
|
D | morph.cpp | 556 struct VMax32f { __m128 operator()(const __m128& a, const __m128& b) const { return _mm_max_ps(a,b)… in operator ()()
|
D | smooth.cpp | 2289 b = _mm_max_ps(b, t); in operator ()()
|
/external/opencv3/modules/hal/include/opencv2/hal/ |
D | intrin_sse.hpp | 723 OPENCV_HAL_IMPL_SSE_BIN_FUNC(v_float32x4, v_max, _mm_max_ps) in OPENCV_HAL_IMPL_SSE_BIN_FUNC()
|
/external/opencv3/modules/objdetect/src/ |
D | hog.cpp | 364 mask = _mm_cmpgt_ps(_mm_max_ps(_mag2, _mag1), _mag0); in computeGradient()
|