/external/libvpx/libvpx/vpx_dsp/x86/ |
quantize_sse2.c | 81 __m128i qtmp0, qtmp1; local 103 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 105 qtmp1 = _mm_add_epi16(qtmp1, qcoeff1); 108 qcoeff1 = _mm_mulhi_epi16(qtmp1, shift); 159 __m128i qtmp0, qtmp1; local 178 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 180 qtmp1 = _mm_add_epi16(qtmp1, qcoeff1); 182 qcoeff1 = _mm_mulhi_epi16(qtmp1, shift) [all...] |
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_quantize_sse2.c | 55 __m128i qtmp0, qtmp1; local 73 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 77 qcoeff1 = _mm_xor_si128(qtmp1, coeff1_sign); 122 __m128i qtmp0, qtmp1; local 142 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 146 qcoeff1 = _mm_xor_si128(qtmp1, coeff1_sign);
|
vp9_dct_ssse3.c | 314 __m128i qtmp0, qtmp1; local 332 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 336 qcoeff1 = _mm_xor_si128(qtmp1, coeff1_sign); 381 __m128i qtmp0, qtmp1; local 402 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 406 qcoeff1 = _mm_xor_si128(qtmp1, coeff1_sign);
|
vp9_dct_sse2.c | 480 __m128i qtmp0, qtmp1; local 498 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 502 qcoeff1 = _mm_xor_si128(qtmp1, coeff1_sign); 546 __m128i qtmp0, qtmp1; local 563 qtmp1 = _mm_mulhi_epi16(qcoeff1, quant); 567 qcoeff1 = _mm_xor_si128(qtmp1, coeff1_sign); [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
arith_routines_logist.c | 68 int32_t qtmp1; local 72 qtmp1 = WEBRTC_SPL_SAT(kHistEdges[50],xinQ15,kHistEdges[0]); 73 ind = WEBRTC_SPL_MUL(5, qtmp1 - kHistEdges[0]); 77 qtmp1 = qtmp1 - kHistEdges[ind]; 79 WEBRTC_SPL_UMUL_32_16(qtmp1,kCdfSlope[ind]), 15);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
arith_routines_logist.c | 54 int32_t ind, qtmp1, qtmp2, qtmp3; local 67 qtmp1 = qtmp2 - kHistEdgesQ15[0]; /* Q15 - Q15 = Q15 */ 68 ind = (qtmp1 * 5) >> 16; /* 2^16 / 5 = 0.4 in Q15 */ 70 qtmp1 = qtmp2 - kHistEdgesQ15[ind]; /* Q15 - Q15 = Q15 */ 71 qtmp2 = kCdfSlopeQ0[ind] * qtmp1; /* Q0 * Q15 = Q15 */
|