Searched refs:ubounded (Results 1 - 2 of 2) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/x86/
H A Dhighbd_loopfilter_sse2.c18 __m128i ubounded; local
42 ubounded = _mm_cmpgt_epi16(value, max);
44 retval = _mm_andnot_si128(_mm_or_si128(ubounded, lbounded), value);
45 ubounded = _mm_and_si128(ubounded, max);
47 retval = _mm_or_si128(retval, ubounded);
H A Dinv_txfm_sse2.c3495 __m128i ubounded, retval; local
3499 ubounded = _mm_cmpgt_epi16(value, max);
3500 retval = _mm_andnot_si128(ubounded, value);
3501 ubounded = _mm_and_si128(ubounded, max);
3502 retval = _mm_or_si128(retval, ubounded);

Completed in 105 milliseconds