OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dequant_ptr
(Results
1 - 4
of
4
) sorted by null
/external/libvpx/libvpx/vp8/encoder/x86/
vp8_enc_stubs_mmx.c
25
short *qcoeff_ptr, short *
dequant_ptr
,
37
short *
dequant_ptr
= d->dequant;
local
43
dequant_ptr
,
/external/libvpx/libvpx/vp8/encoder/
quantize.c
34
short *
dequant_ptr
= d->dequant;
local
57
dqcoeff_ptr[rc] = x *
dequant_ptr
[rc]; /* dequantized value */
79
short *
dequant_ptr
= d->dequant;
local
93
dqcoeff_ptr[rc] = x *
dequant_ptr
[rc]; /* dequantized value */
119
short *
dequant_ptr
= d->dequant;
local
145
dqcoeff_ptr[rc] = x *
dequant_ptr
[rc]; /* dequantized value */
173
short *
dequant_ptr
;
local
180
dequant_ptr
= d->dequant;
192
dq =
dequant_ptr
[rc];
230
short *
dequant_ptr
= d->dequant
local
[
all
...]
encodemb.c
231
const short *
dequant_ptr
;
local
268
dequant_ptr
= d->dequant;
340
if((abs(x)*
dequant_ptr
[rc]>abs(coeff_ptr[rc])) &&
341
(abs(x)*
dequant_ptr
[rc]<abs(coeff_ptr[rc])+
dequant_ptr
[rc]))
397
dx -= (
dequant_ptr
[rc] + sz) ^ sz;
459
dqcoeff_ptr[rc] = x *
dequant_ptr
[rc];
/external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c
139
const int16_t *
dequant_ptr
= pd->dequant;
local
207
if ((abs(x)*
dequant_ptr
[rc != 0] > abs(coeff_ptr[rc]) * mul) &&
208
(abs(x)*
dequant_ptr
[rc != 0] < abs(coeff_ptr[rc]) * mul +
209
dequant_ptr
[rc != 0]))
251
dx -= (
dequant_ptr
[rc != 0] + sz) ^ sz;
308
dqcoeff_ptr[rc] = (x *
dequant_ptr
[rc != 0]) / mul;
Completed in 3814 milliseconds