OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DQ
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/
dequantize_arm.c
16
extern void vp8_dequantize_b_loop_v6(short *Q, short *DQC, short *
DQ
);
20
short *
DQ
= d->dqcoeff;
23
vp8_dequantize_b_loop_v6(Q, DQC,
DQ
);
/external/libvpx/libvpx/vp8/common/arm/
dequantize_arm.c
16
extern void vp8_dequantize_b_loop_neon(short *Q, short *DQC, short *
DQ
);
20
extern void vp8_dequantize_b_loop_v6(short *Q, short *DQC, short *
DQ
);
27
short *
DQ
= d->dqcoeff;
30
vp8_dequantize_b_loop_neon(Q, DQC,
DQ
);
37
short *
DQ
= d->dqcoeff;
40
vp8_dequantize_b_loop_v6(Q, DQC,
DQ
);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
dequantize.c
20
short *
DQ
= d->dqcoeff;
25
DQ
[i] = Q[i] * DQC[i];
29
void vp8_dequant_idct_add_c(short *input, short *
dq
,
36
input[i] =
dq
[i] * input[i];
/external/libvpx/libvpx/vp8/common/
dequantize.c
20
short *
DQ
= d->dqcoeff;
25
DQ
[i] = Q[i] * DQC[i];
29
void vp8_dequant_idct_add_c(short *input, short *
dq
,
36
input[i] =
dq
[i] * input[i];
Completed in 71 milliseconds