Searched defs:abs_qcoeff (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
H A Dquantize.c55 const uint32_t abs_qcoeff = (uint32_t)((tmp * quant) >> 16); local
56 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign);
58 if (abs_qcoeff)
111 const uint32_t abs_qcoeff = (uint32_t)((tmp * quant) >> 15); local
112 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign);
114 if (abs_qcoeff)
212 const uint32_t abs_qcoeff = local
214 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign);
216 if (abs_qcoeff)
327 const uint32_t abs_qcoeff local
[all...]
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dhighbd_quantize_intrin_sse2.c90 const uint32_t abs_qcoeff = local
92 qcoeff_ptr[k] = (int)(abs_qcoeff ^ coeff_sign[j]) - coeff_sign[j];
94 if (abs_qcoeff)
169 const uint32_t abs_qcoeff = local
171 qcoeff_ptr[rc] = (int)(abs_qcoeff ^ coeff_sign) - coeff_sign;
173 if (abs_qcoeff)
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_quantize.c97 const uint32_t abs_qcoeff = (uint32_t)((tmp * quant_ptr[rc != 0]) >> 16); local
98 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign);
100 if (abs_qcoeff)
172 uint32_t abs_qcoeff = 0; local
181 abs_qcoeff = (uint32_t) ((tmp * quant_ptr[rc != 0]) >> 15);
182 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign);
186 if (abs_qcoeff)

Completed in 417 milliseconds