Searched refs:ubounded (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_loopfilter_sse2.c | 18 __m128i ubounded; in signed_char_clamp_bd_sse2() local 42 ubounded = _mm_cmpgt_epi16(value, max); in signed_char_clamp_bd_sse2() 44 retval = _mm_andnot_si128(_mm_or_si128(ubounded, lbounded), value); in signed_char_clamp_bd_sse2() 45 ubounded = _mm_and_si128(ubounded, max); in signed_char_clamp_bd_sse2() 47 retval = _mm_or_si128(retval, ubounded); in signed_char_clamp_bd_sse2()
|
D | inv_txfm_sse2.c | 3495 __m128i ubounded, retval; in clamp_high_sse2() local 3499 ubounded = _mm_cmpgt_epi16(value, max); in clamp_high_sse2() 3500 retval = _mm_andnot_si128(ubounded, value); in clamp_high_sse2() 3501 ubounded = _mm_and_si128(ubounded, max); in clamp_high_sse2() 3502 retval = _mm_or_si128(retval, ubounded); in clamp_high_sse2()
|