Lines Matching refs:thresh8
481 __m128i thresh8 = _mm_set1_epi16(thresh), maxval8 = _mm_set1_epi16(maxval); in thresh_16s() local
487 v0 = _mm_cmpgt_epi16( v0, thresh8 ); in thresh_16s()
488 v1 = _mm_cmpgt_epi16( v1, thresh8 ); in thresh_16s()
517 __m128i thresh8 = _mm_set1_epi16(thresh), maxval8 = _mm_set1_epi16(maxval); in thresh_16s() local
523 v0 = _mm_cmpgt_epi16( v0, thresh8 ); in thresh_16s()
524 v1 = _mm_cmpgt_epi16( v1, thresh8 ); in thresh_16s()
553 __m128i thresh8 = _mm_set1_epi16(thresh); in thresh_16s() local
559 v0 = _mm_min_epi16( v0, thresh8 ); in thresh_16s()
560 v1 = _mm_min_epi16( v1, thresh8 ); in thresh_16s()
584 __m128i thresh8 = _mm_set1_epi16(thresh); in thresh_16s() local
590 v0 = _mm_and_si128(v0, _mm_cmpgt_epi16(v0, thresh8)); in thresh_16s()
591 v1 = _mm_and_si128(v1, _mm_cmpgt_epi16(v1, thresh8)); in thresh_16s()
622 __m128i thresh8 = _mm_set1_epi16(thresh); in thresh_16s() local
628 v0 = _mm_andnot_si128(_mm_cmpgt_epi16(v0, thresh8), v0); in thresh_16s()
629 v1 = _mm_andnot_si128(_mm_cmpgt_epi16(v1, thresh8), v1); in thresh_16s()