OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:abs_qcoeff
(Results
1 - 3
of
3
) sorted by null
/external/libvpx/libvpx/vpx_dsp/
quantize.c
55
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/
highbd_quantize_intrin_sse2.c
90
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/
vp9_quantize.c
97
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 226 milliseconds