Searched refs:_mm_min_ps (Results 1 – 15 of 15) sorted by relevance
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | simd_vec4.inl | 396 return _mm_min_ps(x.Data, y.Data); 405 return _mm_min_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 | 52 static SkNx Min(const SkNx& l, const SkNx& r) { return _mm_min_ps(l.fVec, r.fVec); } in Min() 100 static SkNx Min(const SkNx& l, const SkNx& r) { return _mm_min_ps(l.fVec, r.fVec); } in Min()
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | intrinsic_common.inl | 244 //GLM_FUNC_QUALIFIER __m128 _mm_min_ps(__m128 x, __m128 y) 250 __m128 min0 = _mm_min_ps(v, maxVal);
|
/external/eigen/Eigen/src/Core/arch/SSE/ |
D | PacketMath.h | 177 …NG_INLINE Packet4f pmin<Packet4f>(const Packet4f& a, const Packet4f& b) { return _mm_min_ps(a,b); } 561 Packet4f tmp = _mm_min_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/opencv3/modules/imgproc/src/ |
D | thresh.cpp | 808 v0 = _mm_min_ps( v0, thresh4 ); in thresh_32f() 809 v1 = _mm_min_ps( v1, thresh4 ); in thresh_32f()
|
D | shapedescr.cpp | 526 minvalf = _mm_min_ps(minvalf, ptXY); in pointSetBoundingRect()
|
D | morph.cpp | 555 struct VMin32f { __m128 operator()(const __m128& a, const __m128& b) const { return _mm_min_ps(a,b)… in operator ()()
|
D | histogram.cpp | 2381 __m128 v_src = _mm_min_ps(_mm_loadu_ps(h1 + j), in compareHist()
|
D | smooth.cpp | 2288 a = _mm_min_ps(a, b); in operator ()()
|
/external/clang/lib/Headers/ |
D | xmmintrin.h | 140 _mm_min_ps(__m128 __a, __m128 __b) in _mm_min_ps() function
|
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_core_sse2.c | 334 const __m128 x_min = _mm_min_ps(b_log2_a, *((__m128*)max_input)); in mm_pow_ps()
|
/external/opencv3/modules/objdetect/src/ |
D | hog.cpp | 1003 p = _mm_min_ps(p, _threshold); in normalizeBlockHistogram() 1011 p = _mm_min_ps(p, _threshold); in normalizeBlockHistogram()
|
/external/opencv3/modules/hal/include/opencv2/hal/ |
D | intrin_sse.hpp | 722 OPENCV_HAL_IMPL_SSE_BIN_FUNC(v_float32x4, v_min, _mm_min_ps) in OPENCV_HAL_IMPL_SSE_BIN_FUNC()
|
/external/opencv3/modules/core/src/ |
D | arithm.cpp | 530 FUNCTOR_CLOSURE_2arg(VMin, float, return _mm_min_ps(a, b));
|