/external/libvpx/libvpx/vpx_dsp/x86/ |
quantize_sse2.c | 80 __m128i qcoeff0, qcoeff1; local 91 qcoeff1 = _mm_xor_si128(coeff1, coeff1_sign); 93 qcoeff1 = _mm_sub_epi16(qcoeff1, coeff1_sign); 97 cmp_mask1 = _mm_cmpgt_epi16(qcoeff1, zbin); 100 qcoeff1 = _mm_adds_epi16(qcoeff1, round); 103 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 105 qtmp1 = _mm_add_epi16(qtmp1, qcoeff1); 108 qcoeff1 = _mm_mulhi_epi16(qtmp1, shift) 158 __m128i qcoeff0, qcoeff1; local [all...] |
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_quantize_sse2.c | 54 __m128i qcoeff0, qcoeff1; local 64 qcoeff1 = _mm_xor_si128(coeff1, coeff1_sign); 66 qcoeff1 = _mm_sub_epi16(qcoeff1, coeff1_sign); 70 qcoeff1 = _mm_adds_epi16(qcoeff1, round); 73 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 77 qcoeff1 = _mm_xor_si128(qtmp1, coeff1_sign); 79 qcoeff1 = _mm_sub_epi16(qcoeff1, coeff1_sign) 121 __m128i qcoeff0, qcoeff1; local [all...] |
vp9_dct_ssse3.c | 313 __m128i qcoeff0, qcoeff1; local 323 qcoeff1 = _mm_xor_si128(coeff1, coeff1_sign); 325 qcoeff1 = _mm_sub_epi16(qcoeff1, coeff1_sign); 329 qcoeff1 = _mm_adds_epi16(qcoeff1, round); 332 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 336 qcoeff1 = _mm_xor_si128(qtmp1, coeff1_sign); 338 qcoeff1 = _mm_sub_epi16(qcoeff1, coeff1_sign) 380 __m128i qcoeff0, qcoeff1; local [all...] |
vp9_dct_sse2.c | 479 __m128i qcoeff0, qcoeff1; local 489 qcoeff1 = _mm_xor_si128(coeff1, coeff1_sign); 491 qcoeff1 = _mm_sub_epi16(qcoeff1, coeff1_sign); 495 qcoeff1 = _mm_adds_epi16(qcoeff1, round); 498 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 502 qcoeff1 = _mm_xor_si128(qtmp1, coeff1_sign); 504 qcoeff1 = _mm_sub_epi16(qcoeff1, coeff1_sign) 545 __m128i qcoeff0, qcoeff1; local [all...] |
/external/libvpx/libvpx/vp8/encoder/x86/ |
quantize_sse4.c | 52 __m128i qcoeff1 = _mm_setzero_si128(); local 104 SELECT_EOB(4, 0, x_minus_zbin1, y1, qcoeff1); 109 SELECT_EOB(9, 1, x_minus_zbin1, y1, qcoeff1); 110 SELECT_EOB(10, 4, x_minus_zbin1, y1, qcoeff1); 111 SELECT_EOB(11, 5, x_minus_zbin1, y1, qcoeff1); 112 SELECT_EOB(12, 2, x_minus_zbin1, y1, qcoeff1); 114 SELECT_EOB(14, 3, x_minus_zbin1, y1, qcoeff1); 115 SELECT_EOB(15, 6, x_minus_zbin1, y1, qcoeff1); 116 SELECT_EOB(16, 7, x_minus_zbin1, y1, qcoeff1); 119 _mm_store_si128((__m128i *)(d->qcoeff + 8), qcoeff1); [all...] |