Lines Matching refs:thresh4
726 __m128 thresh4 = _mm_set1_ps(thresh), maxval4 = _mm_set1_ps(maxval); in thresh_32f() local
732 v0 = _mm_cmpgt_ps( v0, thresh4 ); in thresh_32f()
733 v1 = _mm_cmpgt_ps( v1, thresh4 ); in thresh_32f()
764 __m128 thresh4 = _mm_set1_ps(thresh), maxval4 = _mm_set1_ps(maxval); in thresh_32f() local
770 v0 = _mm_cmple_ps( v0, thresh4 ); in thresh_32f()
771 v1 = _mm_cmple_ps( v1, thresh4 ); in thresh_32f()
802 __m128 thresh4 = _mm_set1_ps(thresh); in thresh_32f() local
808 v0 = _mm_min_ps( v0, thresh4 ); in thresh_32f()
809 v1 = _mm_min_ps( v1, thresh4 ); in thresh_32f()
833 __m128 thresh4 = _mm_set1_ps(thresh); in thresh_32f() local
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()
872 __m128 thresh4 = _mm_set1_ps(thresh); in thresh_32f() local
878 v0 = _mm_and_ps(v0, _mm_cmple_ps(v0, thresh4)); in thresh_32f()
879 v1 = _mm_and_ps(v1, _mm_cmple_ps(v1, thresh4)); in thresh_32f()