Home
last modified time | relevance | path

Searched refs:_mm_cmpgt_ps (Results 1 – 10 of 10) sorted by relevance

/external/eigen/unsupported/Eigen/src/MoreVectorization/
DMathFunctions.h50 Packet4f branch_mask= _mm_cmpgt_ps(a, p4f_half);//this is to select which branch to take in pasin()
/external/skia/src/opts/
DSkNx_sse.h22 __m128 too_big = _mm_cmpgt_ps(roundtrip, v); in sse2_mm_floor_ps()
48 SkNx operator > (const SkNx& o) const { return _mm_cmpgt_ps (fVec, o.fVec); }
96 SkNx operator > (const SkNx& o) const { return _mm_cmpgt_ps (fVec, o.fVec); }
/external/opencv3/modules/imgproc/src/
Dthresh.cpp732 v0 = _mm_cmpgt_ps( v0, thresh4 ); in thresh_32f()
733 v1 = _mm_cmpgt_ps( v1, thresh4 ); in thresh_32f()
839 v0 = _mm_and_ps(v0, _mm_cmpgt_ps(v0, thresh4)); in thresh_32f()
840 v1 = _mm_and_ps(v1, _mm_cmpgt_ps(v1, thresh4)); in thresh_32f()
/external/vulkan-validation-layers/libs/glm/detail/
Dintrinsic_common.inl165 __m128 Cmp1 = _mm_cmpgt_ps(x, zero);
213 __m128 cmp0 = _mm_cmpgt_ps(x, rnd0);
/external/clang/test/CodeGen/
Dsse-builtins.c292 return _mm_cmpgt_ps(__a, __b); in test_mm_cmpgt_ps()
/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_sse2.c108 const __m128 bigger = _mm_cmpgt_ps(absEf, kThresh); in ScaleErrorSignalSSE2()
383 const __m128 bigger = _mm_cmpgt_ps(vec_hNl, vec_hNlFb); in OverdriveAndSuppressSSE2()
/external/eigen/Eigen/src/Core/arch/SSE/
DMathFunctions.h144 Packet4f mask = _mm_cmpgt_ps(tmp, fx);
/external/clang/lib/Headers/
Dxmmintrin.h226 _mm_cmpgt_ps(__m128 __a, __m128 __b) in _mm_cmpgt_ps() function
/external/opencv3/modules/hal/include/opencv2/hal/
Dintrin_sse.hpp1158 __m128i mask = _mm_castps_si128(_mm_cmpgt_ps(_mm_cvtepi32_ps(a1), a.val)); in v_floor()
1165 __m128i mask = _mm_castps_si128(_mm_cmpgt_ps(a.val, _mm_cvtepi32_ps(a1))); in v_ceil()
/external/opencv3/modules/objdetect/src/
Dhog.cpp360 __m128 mask = _mm_cmpgt_ps(_mag2, _mag1); in computeGradient()
364 mask = _mm_cmpgt_ps(_mm_max_ps(_mag2, _mag1), _mag0); in computeGradient()