Searched refs:ubounded (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_inv_txfm_sse2.h | 58 __m128i ubounded, retval; in clamp_high_sse2() local 62 ubounded = _mm_cmpgt_epi16(value, max); in clamp_high_sse2() 63 retval = _mm_andnot_si128(ubounded, value); in clamp_high_sse2() 64 ubounded = _mm_and_si128(ubounded, max); in clamp_high_sse2() 65 retval = _mm_or_si128(retval, ubounded); in clamp_high_sse2()
|
D | highbd_loopfilter_sse2.c | 18 __m128i ubounded; in signed_char_clamp_bd_sse2() local 39 ubounded = _mm_cmpgt_epi16(value, max); in signed_char_clamp_bd_sse2() 41 retval = _mm_andnot_si128(_mm_or_si128(ubounded, lbounded), value); in signed_char_clamp_bd_sse2() 42 ubounded = _mm_and_si128(ubounded, max); in signed_char_clamp_bd_sse2() 44 retval = _mm_or_si128(retval, ubounded); in signed_char_clamp_bd_sse2()
|