Home
last modified time | relevance | path

Searched refs:thresh8 (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/imgproc/src/
Dthresh.cpp481 __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
[all …]
/external/opencv3/modules/calib3d/src/
Dstereobm.cpp523 __m128i thresh8 = _mm_set1_epi16((short)(thresh + 1)); in findStereoCorrespondenceBM_SSE2() local
532 mask = _mm_cmpgt_epi16( thresh8, _mm_min_epi16(usad8,vsad8)); in findStereoCorrespondenceBM_SSE2()
536 mask = _mm_cmpgt_epi16( thresh8, usad8); in findStereoCorrespondenceBM_SSE2()
541 mask = _mm_cmpgt_epi16( thresh8, vsad8); in findStereoCorrespondenceBM_SSE2()
/external/opencv/cv/src/
Dcvstereobm.cpp353 __m128i thresh8 = _mm_set1_epi16((short)(thresh + 1)); in icvFindStereoCorrespondenceBM_SSE2() local
360 __m128i mask = _mm_cmpgt_epi16( thresh8, sad8 ); in icvFindStereoCorrespondenceBM_SSE2()