Home
last modified time | relevance | path

Searched refs:coeff_sign (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
Dquantize.c21 const int coeff_sign = (coeff >> 31); in vpx_quantize_dc() local
22 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; in vpx_quantize_dc()
31 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign; in vpx_quantize_dc()
51 const int coeff_sign = (coeff >> 31); in vpx_highbd_quantize_dc() local
52 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; in vpx_highbd_quantize_dc()
55 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vpx_highbd_quantize_dc()
70 const int coeff_sign = (coeff >> 31); in vpx_quantize_dc_32x32() local
71 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; in vpx_quantize_dc_32x32()
81 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign; in vpx_quantize_dc_32x32()
103 const int coeff_sign = (coeff >> 31); in vpx_highbd_quantize_dc_32x32() local
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_quantize.c41 const int coeff_sign = (coeff >> 31); in vp9_quantize_fp_c() local
42 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; in vp9_quantize_fp_c()
47 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign; in vp9_quantize_fp_c()
77 const int coeff_sign = (coeff >> 31); in vp9_highbd_quantize_fp_c() local
78 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; in vp9_highbd_quantize_fp_c()
81 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vp9_highbd_quantize_fp_c()
108 const int coeff_sign = (coeff >> 31); in vp9_quantize_fp_32x32_c() local
110 int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; in vp9_quantize_fp_32x32_c()
116 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign; in vp9_quantize_fp_32x32_c()
144 const int coeff_sign = (coeff >> 31); in vp9_highbd_quantize_fp_32x32_c() local
[all …]
Dvp9_dct.c645 const int coeff_sign = (coeff >> 31); in vp9_fdct8x8_quant_c() local
646 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; in vp9_fdct8x8_quant_c()
651 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign; in vp9_fdct8x8_quant_c()
/external/libvpx/libvpx/vpx_dsp/x86/
Dhighbd_quantize_intrin_sse2.c65 int coeff_sign[4]; in vpx_highbd_quantize_b_sse2() local
75 _mm_storeu_si128((__m128i *)coeff_sign, coeffs_sign); in vpx_highbd_quantize_b_sse2()
84 qcoeff_ptr[k] = (int)(abs_qcoeff ^ coeff_sign[j]) - coeff_sign[j]; in vpx_highbd_quantize_b_sse2()
140 const int coeff_sign = (coeff >> 31); in vpx_highbd_quantize_b_32x32_sse2() local
141 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; in vpx_highbd_quantize_b_32x32_sse2()
147 qcoeff_ptr[rc] = (int)(abs_qcoeff ^ coeff_sign) - coeff_sign; in vpx_highbd_quantize_b_32x32_sse2()