Searched defs:temp_in (Results 1 - 13 of 13) sorted by relevance

/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans16_dspr2.c61 int16_t temp_in[16 * 16]; local
74 temp_in[j * 16 + i] = out[i * 16 + j];
76 idct16_cols_add_blk_dspr2(temp_in, dest, pitch);
81 int16_t temp_in[16]; local
94 temp_in[j] = out[j * 16 + i];
95 iadst16_dspr2(temp_in, temp_out);
H A Dvp9_itrans4_dspr2.c29 int16_t temp_in[4 * 4], temp_out[4]; local
69 temp_in[i * 4 + j] = out[j * 4 + i];
72 vpx_idct4_columns_add_blk_dspr2(&temp_in[0], dest, dest_stride);
83 temp_in[j] = out[j * 4 + i];
84 iadst4_dspr2(temp_in, temp_out);
H A Dvp9_itrans8_dspr2.c28 int16_t temp_in[8 * 8], temp_out[8]; local
64 temp_in[i * 8 + j] = out[j * 8 + i];
67 idct8_columns_add_blk_dspr2(&temp_in[0], dest, dest_stride);
78 temp_in[j] = out[j * 8 + i];
80 iadst8_dspr2(temp_in, temp_out);
/external/libvpx/libvpx/test/
H A Didct8x8_test.cc49 double temp_in[8], temp_out[8]; local
51 temp_in[j] = input[j*8 + i];
52 reference_dct_1d(temp_in, temp_out);
58 double temp_in[8], temp_out[8]; local
60 temp_in[j] = output[j + i*8];
61 reference_dct_1d(temp_in, temp_out);
87 double temp_in[8], temp_out[8]; local
89 temp_in[j] = input[j + i*8];
90 reference_idct_1d(temp_in, temp_out);
96 double temp_in[ local
[all...]
H A Ddct32x32_test.cc58 double temp_in[32], temp_out[32]; local
60 temp_in[j] = input[j*32 + i];
61 reference_32x32_dct_1d(temp_in, temp_out);
67 double temp_in[32], temp_out[32]; local
69 temp_in[j] = output[j + i*32];
70 reference_32x32_dct_1d(temp_in, temp_out);
H A Dfdct8x8_test.cc65 double temp_in[8], temp_out[8]; local
67 temp_in[j] = input[j*8 + i];
68 reference_8x8_dct_1d(temp_in, temp_out, 1);
74 double temp_in[8], temp_out[8]; local
76 temp_in[j] = output[j + i*8];
77 reference_8x8_dct_1d(temp_in, temp_out, 1);
H A Ddct16x16_test.cc242 double temp_in[16], temp_out[16]; local
244 temp_in[j] = input[j * 16 + i];
245 butterfly_16x16_dct_1d(temp_in, temp_out);
251 double temp_in[16], temp_out[16]; local
253 temp_in[j] = output[j + i * 16];
254 butterfly_16x16_dct_1d(temp_in, temp_out);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c32 tran_low_t temp_in[4], temp_out[4]; local
44 temp_in[j] = out[j * 4 + i];
45 IHT_4[tx_type].cols(temp_in, temp_out);
65 tran_low_t temp_in[8], temp_out[8]; local
78 temp_in[j] = out[j * 8 + i];
79 ht.cols(temp_in, temp_out);
99 tran_low_t temp_in[16], temp_out[16]; local
112 temp_in[j] = out[j * 16 + i];
113 ht.cols(temp_in, temp_out);
222 tran_low_t temp_in[ local
255 tran_low_t temp_in[8], temp_out[8]; local
290 tran_low_t temp_in[16], temp_out[16]; local
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Dfwd_txfm.c721 tran_high_t temp_in[32], temp_out[32]; local
723 temp_in[j] = input[j * stride + i] * 4;
724 vpx_fdct32(temp_in, temp_out, 0);
731 tran_high_t temp_in[32], temp_out[32]; local
733 temp_in[j] = output[j + i * 32];
734 vpx_fdct32(temp_in, temp_out, 0);
750 tran_high_t temp_in[32], temp_out[32]; local
752 temp_in[j] = input[j * stride + i] * 4;
753 vpx_fdct32(temp_in, temp_out, 0);
763 tran_high_t temp_in[3 local
[all...]
H A Dinv_txfm.c118 tran_low_t temp_in[4], temp_out[4]; local
130 temp_in[j] = out[j * 4 + i];
131 idct4_c(temp_in, temp_out);
205 tran_low_t temp_in[8], temp_out[8]; local
217 temp_in[j] = out[j * 8 + i];
218 idct8_c(temp_in, temp_out);
357 tran_low_t temp_in[8], temp_out[8]; local
370 temp_in[j] = out[j * 8 + i];
371 idct8_c(temp_in, temp_out);
549 tran_low_t temp_in[1 local
747 tran_low_t temp_in[16], temp_out[16]; local
1154 tran_low_t temp_in[32], temp_out[32]; local
1193 tran_low_t temp_in[32], temp_out[32]; local
1344 tran_low_t temp_in[4], temp_out[4]; local
1436 tran_low_t temp_in[8], temp_out[8]; local
1594 tran_low_t temp_in[8], temp_out[8]; local
1787 tran_low_t temp_in[16], temp_out[16]; local
1984 tran_low_t temp_in[16], temp_out[16]; local
2398 tran_low_t temp_in[32], temp_out[32]; local
2438 tran_low_t temp_in[32], temp_out[32]; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c537 tran_low_t temp_in[4], temp_out[4]; local
543 temp_in[j] = input[j * stride + i] * 16;
544 if (i == 0 && temp_in[0])
545 temp_in[0] += 1;
546 ht.cols(temp_in, temp_out);
554 temp_in[j] = out[j + i * 4];
555 ht.rows(temp_in, temp_out);
681 tran_low_t temp_in[8], temp_out[8]; local
687 temp_in[j] = input[j * stride + i] * 4;
688 ht.cols(temp_in, temp_ou
767 tran_low_t temp_in[16], temp_out[16]; local
[all...]
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dinv_txfm_sse2.c3603 tran_low_t temp_in[4], temp_out[4]; local
3607 temp_in[j] = out[j * 4 + i];
3608 vpx_highbd_idct4_c(temp_in, temp_out, bd);
3705 tran_low_t temp_in[8], temp_out[8]; local
3708 temp_in[j] = out[j * 8 + i];
3709 vpx_highbd_idct8_c(temp_in, temp_out, bd);
3809 tran_low_t temp_in[8], temp_out[8]; local
3812 temp_in[j] = out[j * 8 + i];
3813 vpx_highbd_idct8_c(temp_in, temp_out, bd);
3923 tran_low_t temp_in[1 local
4042 tran_low_t temp_in[16], temp_out[16]; local
[all...]
H A Dfwd_dct32x32_impl_sse2.h27 tran_high_t temp_in[32], temp_out[32]; local
29 temp_in[j] = intermediate[j * 32 + i];
30 vpx_fdct32(temp_in, temp_out, 0);
42 tran_high_t temp_in[32], temp_out[32]; local
44 temp_in[j] = intermediate[j * 32 + i];
45 vpx_fdct32(temp_in, temp_out, 1);

Completed in 236 milliseconds