OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dct_const_round_shift
(Results
1 - 15
of
15
) sorted by null
/external/libvpx/libvpx/vpx_dsp/
inv_txfm.c
126
output[0] = WRAPLOW(
dct_const_round_shift
(s0 + s3));
127
output[1] = WRAPLOW(
dct_const_round_shift
(s1 + s3));
128
output[2] = WRAPLOW(
dct_const_round_shift
(s2));
129
output[3] = WRAPLOW(
dct_const_round_shift
(s0 + s1 - s3));
139
step[0] = WRAPLOW(
dct_const_round_shift
(temp1));
140
step[1] = WRAPLOW(
dct_const_round_shift
(temp2));
143
step[2] = WRAPLOW(
dct_const_round_shift
(temp1));
144
step[3] = WRAPLOW(
dct_const_round_shift
(temp2));
180
tran_low_t out = WRAPLOW(
dct_const_round_shift
(input[0] * cospi_16_64));
182
out = WRAPLOW(
dct_const_round_shift
(out * cospi_16_64))
[
all
...]
inv_txfm.h
38
static INLINE tran_high_t
dct_const_round_shift
(tran_high_t input) {
function
/external/libvpx/libvpx/vpx_dsp/mips/
itrans16_dspr2.c
[
all
...]
itrans4_dspr2.c
27
step_0 =
dct_const_round_shift
(temp_1);
30
step_1 =
dct_const_round_shift
(temp_2);
54
step_2 =
dct_const_round_shift
(temp1);
62
step_3 =
dct_const_round_shift
(temp2);
113
step_0 =
dct_const_round_shift
(temp_1);
116
step_1 =
dct_const_round_shift
(temp_2);
140
step_2 =
dct_const_round_shift
(temp1);
148
step_3 =
dct_const_round_shift
(temp2);
369
output[0] =
dct_const_round_shift
(s0);
370
output[1] =
dct_const_round_shift
(s1)
[
all
...]
/external/libvpx/libvpx/vpx_dsp/arm/
idct32x32_1_add_neon.c
42
const int16_t out0 = WRAPLOW(
dct_const_round_shift
(input[0] * cospi_16_64));
43
const int16_t out1 = WRAPLOW(
dct_const_round_shift
(out0 * cospi_16_64));
idct4x4_1_add_neon.c
35
const int16_t out0 = WRAPLOW(
dct_const_round_shift
(input[0] * cospi_16_64));
36
const int16_t out1 = WRAPLOW(
dct_const_round_shift
(out0 * cospi_16_64));
idct8x8_1_add_neon.c
39
const int16_t out0 = WRAPLOW(
dct_const_round_shift
(input[0] * cospi_16_64));
40
const int16_t out1 = WRAPLOW(
dct_const_round_shift
(out0 * cospi_16_64));
idct16x16_1_add_neon.c
35
const int16_t out0 = WRAPLOW(
dct_const_round_shift
(input[0] * cospi_16_64));
36
const int16_t out1 = WRAPLOW(
dct_const_round_shift
(out0 * cospi_16_64));
highbd_idct32x32_add_neon.c
65
HIGHBD_WRAPLOW(
dct_const_round_shift
(input[0] * cospi_16_64), bd);
67
HIGHBD_WRAPLOW(
dct_const_round_shift
(out0 * cospi_16_64), bd);
highbd_idct4x4_add_neon.c
58
HIGHBD_WRAPLOW(
dct_const_round_shift
(input[0] * cospi_16_64), bd);
60
HIGHBD_WRAPLOW(
dct_const_round_shift
(out0 * cospi_16_64), bd);
highbd_idct8x8_add_neon.c
42
HIGHBD_WRAPLOW(
dct_const_round_shift
(input[0] * cospi_16_64), bd);
44
HIGHBD_WRAPLOW(
dct_const_round_shift
(out0 * cospi_16_64), bd);
highbd_idct16x16_add_neon.c
[
all
...]
/external/libvpx/libvpx/vpx_dsp/x86/
highbd_inv_txfm_sse2.h
42
out = HIGHBD_WRAPLOW(
dct_const_round_shift
(input[0] * cospi_16_64), bd);
43
out = HIGHBD_WRAPLOW(
dct_const_round_shift
(out * cospi_16_64), bd);
highbd_idct4x4_add_sse2.c
141
out = HIGHBD_WRAPLOW(
dct_const_round_shift
(input[0] * cospi_16_64), bd);
142
out = HIGHBD_WRAPLOW(
dct_const_round_shift
(out * cospi_16_64), bd);
inv_txfm_sse2.c
44
a = (int)
dct_const_round_shift
(input[0] * cospi_16_64);
45
a = (int)
dct_const_round_shift
(a * cospi_16_64);
324
a = (int)
dct_const_round_shift
(input[0] * cospi_16_64);
325
a = (int)
dct_const_round_shift
(a * cospi_16_64);
[
all
...]
Completed in 586 milliseconds