Home
last modified time | relevance | path

Searched refs:temp_in (Results 1 – 12 of 12) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_idct.c32 tran_low_t temp_in[4], temp_out[4]; in vp9_iht4x4_16_add_c() local
43 for (j = 0; j < 4; ++j) temp_in[j] = out[j * 4 + i]; in vp9_iht4x4_16_add_c()
44 IHT_4[tx_type].cols(temp_in, temp_out); in vp9_iht4x4_16_add_c()
64 tran_low_t temp_in[8], temp_out[8]; in vp9_iht8x8_64_add_c() local
76 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i]; in vp9_iht8x8_64_add_c()
77 ht.cols(temp_in, temp_out); in vp9_iht8x8_64_add_c()
97 tran_low_t temp_in[16], temp_out[16]; in vp9_iht16x16_256_add_c() local
109 for (j = 0; j < 16; ++j) temp_in[j] = out[j * 16 + i]; in vp9_iht16x16_256_add_c()
110 ht.cols(temp_in, temp_out); in vp9_iht16x16_256_add_c()
220 tran_low_t temp_in[4], temp_out[4]; in vp9_highbd_iht4x4_16_add_c() local
[all …]
/external/libvpx/libvpx/vp9/common/mips/dspr2/
Dvp9_itrans16_dspr2.c56 int16_t temp_in[16 * 16]; in vp9_iht16x16_256_add_dspr2() local
68 for (j = 0; j < 16; ++j) temp_in[j * 16 + i] = out[i * 16 + j]; in vp9_iht16x16_256_add_dspr2()
70 idct16_cols_add_blk_dspr2(temp_in, dest, pitch); in vp9_iht16x16_256_add_dspr2()
75 int16_t temp_in[16]; in vp9_iht16x16_256_add_dspr2() local
87 for (j = 0; j < 16; ++j) temp_in[j] = out[j * 16 + i]; in vp9_iht16x16_256_add_dspr2()
88 iadst16_dspr2(temp_in, temp_out); in vp9_iht16x16_256_add_dspr2()
Dvp9_itrans8_dspr2.c28 int16_t temp_in[8 * 8], temp_out[8]; in vp9_iht8x8_64_add_dspr2() local
59 temp_in[i * 8 + j] = out[j * 8 + i]; in vp9_iht8x8_64_add_dspr2()
62 idct8_columns_add_blk_dspr2(&temp_in[0], dest, stride); in vp9_iht8x8_64_add_dspr2()
72 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i]; in vp9_iht8x8_64_add_dspr2()
74 iadst8_dspr2(temp_in, temp_out); in vp9_iht8x8_64_add_dspr2()
Dvp9_itrans4_dspr2.c29 int16_t temp_in[4 * 4], temp_out[4]; in vp9_iht4x4_16_add_dspr2() local
66 temp_in[i * 4 + j] = out[j * 4 + i]; in vp9_iht4x4_16_add_dspr2()
69 vpx_idct4_columns_add_blk_dspr2(&temp_in[0], dest, stride); in vp9_iht4x4_16_add_dspr2()
79 for (j = 0; j < 4; ++j) temp_in[j] = out[j * 4 + i]; in vp9_iht4x4_16_add_dspr2()
80 iadst4_dspr2(temp_in, temp_out); in vp9_iht4x4_16_add_dspr2()
/external/libvpx/libvpx/test/
Didct8x8_test.cc41 double temp_in[8], temp_out[8]; in reference_dct_2d() local
42 for (int j = 0; j < 8; ++j) temp_in[j] = input[j * 8 + i]; in reference_dct_2d()
43 reference_dct_1d(temp_in, temp_out); in reference_dct_2d()
48 double temp_in[8], temp_out[8]; in reference_dct_2d() local
49 for (int j = 0; j < 8; ++j) temp_in[j] = output[j + i * 8]; in reference_dct_2d()
50 reference_dct_1d(temp_in, temp_out); in reference_dct_2d()
Ddct32x32_test.cc51 double temp_in[32], temp_out[32]; in reference_32x32_dct_2d() local
52 for (int j = 0; j < 32; ++j) temp_in[j] = input[j * 32 + i]; in reference_32x32_dct_2d()
53 reference_32x32_dct_1d(temp_in, temp_out); in reference_32x32_dct_2d()
58 double temp_in[32], temp_out[32]; in reference_32x32_dct_2d() local
59 for (int j = 0; j < 32; ++j) temp_in[j] = output[j + i * 32]; in reference_32x32_dct_2d()
60 reference_32x32_dct_1d(temp_in, temp_out); in reference_32x32_dct_2d()
Dfdct8x8_test.cc65 double temp_in[8], temp_out[8]; in reference_8x8_dct_2d() local
66 for (int j = 0; j < 8; ++j) temp_in[j] = input[j * 8 + i]; in reference_8x8_dct_2d()
67 reference_8x8_dct_1d(temp_in, temp_out); in reference_8x8_dct_2d()
72 double temp_in[8], temp_out[8]; in reference_8x8_dct_2d() local
73 for (int j = 0; j < 8; ++j) temp_in[j] = output[j + i * 8]; in reference_8x8_dct_2d()
74 reference_8x8_dct_1d(temp_in, temp_out); in reference_8x8_dct_2d()
Ddct16x16_test.cc210 double temp_in[16], temp_out[16]; in reference_16x16_dct_2d() local
211 for (int j = 0; j < 16; ++j) temp_in[j] = input[j * 16 + i]; in reference_16x16_dct_2d()
212 butterfly_16x16_dct_1d(temp_in, temp_out); in reference_16x16_dct_2d()
217 double temp_in[16], temp_out[16]; in reference_16x16_dct_2d() local
218 for (int j = 0; j < 16; ++j) temp_in[j] = output[j + i * 16]; in reference_16x16_dct_2d()
219 butterfly_16x16_dct_1d(temp_in, temp_out); in reference_16x16_dct_2d()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_dct.c537 tran_low_t temp_in[4], temp_out[4]; in vp9_fht4x4_c() local
542 for (j = 0; j < 4; ++j) temp_in[j] = input[j * stride + i] * 16; in vp9_fht4x4_c()
543 if (i == 0 && temp_in[0]) temp_in[0] += 1; in vp9_fht4x4_c()
544 ht.cols(temp_in, temp_out); in vp9_fht4x4_c()
550 for (j = 0; j < 4; ++j) temp_in[j] = out[j + i * 4]; in vp9_fht4x4_c()
551 ht.rows(temp_in, temp_out); in vp9_fht4x4_c()
667 tran_low_t temp_in[8], temp_out[8]; in vp9_fht8x8_c() local
672 for (j = 0; j < 8; ++j) temp_in[j] = input[j * stride + i] * 4; in vp9_fht8x8_c()
673 ht.cols(temp_in, temp_out); in vp9_fht8x8_c()
679 for (j = 0; j < 8; ++j) temp_in[j] = out[j + i * 8]; in vp9_fht8x8_c()
[all …]
/external/libvpx/libvpx/vpx_dsp/
Dinv_txfm.c158 tran_low_t temp_in[4], temp_out[4]; in vpx_idct4x4_16_add_c() local
169 for (j = 0; j < 4; ++j) temp_in[j] = out[j * 4 + i]; in vpx_idct4x4_16_add_c()
170 idct4_c(temp_in, temp_out); in vpx_idct4x4_16_add_c()
330 tran_low_t temp_in[8], temp_out[8]; in vpx_idct8x8_64_add_c() local
341 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i]; in vpx_idct8x8_64_add_c()
342 idct8_c(temp_in, temp_out); in vpx_idct8x8_64_add_c()
354 tran_low_t temp_in[8], temp_out[8]; in vpx_idct8x8_12_add_c() local
366 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i]; in vpx_idct8x8_12_add_c()
367 idct8_c(temp_in, temp_out); in vpx_idct8x8_12_add_c()
727 tran_low_t temp_in[16], temp_out[16]; in vpx_idct16x16_256_add_c() local
[all …]
Dfwd_txfm.c714 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_c() local
715 for (j = 0; j < 32; ++j) temp_in[j] = input[j * stride + i] * 4; in vpx_fdct32x32_c()
716 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_c()
723 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_c() local
724 for (j = 0; j < 32; ++j) temp_in[j] = output[j + i * 32]; in vpx_fdct32x32_c()
725 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_c()
741 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rd_c() local
742 for (j = 0; j < 32; ++j) temp_in[j] = input[j * stride + i] * 4; in vpx_fdct32x32_rd_c()
743 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_rd_c()
753 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rd_c() local
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dfwd_dct32x32_impl_sse2.h27 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rows_c() local
28 for (j = 0; j < 32; ++j) temp_in[j] = intermediate[j * 32 + i]; in vpx_fdct32x32_rows_c()
29 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_rows_c()
41 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rd_rows_c() local
42 for (j = 0; j < 32; ++j) temp_in[j] = intermediate[j * 32 + i]; in vpx_fdct32x32_rd_rows_c()
43 vpx_fdct32(temp_in, temp_out, 1); in vpx_fdct32x32_rd_rows_c()