HomeSort by relevance Sort by last modified time
    Searched defs:temp_in (Results 1 - 12 of 12) sorted by null

  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_itrans16_dspr2.c 56 int16_t temp_in[16 * 16]; local
68 for (j = 0; j < 16; ++j) temp_in[j * 16 + i] = out[i * 16 + j];
70 idct16_cols_add_blk_dspr2(temp_in, dest, pitch);
75 int16_t temp_in[16]; local
87 for (j = 0; j < 16; ++j) temp_in[j] = out[j * 16 + i];
88 iadst16_dspr2(temp_in, temp_out);
vp9_itrans4_dspr2.c 29 int16_t temp_in[4 * 4], temp_out[4]; local
66 temp_in[i * 4 + j] = out[j * 4 + i];
69 vpx_idct4_columns_add_blk_dspr2(&temp_in[0], dest, stride);
79 for (j = 0; j < 4; ++j) temp_in[j] = out[j * 4 + i];
80 iadst4_dspr2(temp_in, temp_out);
vp9_itrans8_dspr2.c 28 int16_t temp_in[8 * 8], temp_out[8]; local
59 temp_in[i * 8 + j] = out[j * 8 + i];
62 idct8_columns_add_blk_dspr2(&temp_in[0], dest, stride);
72 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i];
74 iadst8_dspr2(temp_in, temp_out);
  /external/libvpx/libvpx/test/
idct8x8_test.cc 41 double temp_in[8], temp_out[8]; local
42 for (int j = 0; j < 8; ++j) temp_in[j] = input[j * 8 + i];
43 reference_dct_1d(temp_in, temp_out);
48 double temp_in[8], temp_out[8]; local
49 for (int j = 0; j < 8; ++j) temp_in[j] = output[j + i * 8];
50 reference_dct_1d(temp_in, temp_out);
dct32x32_test.cc 51 double temp_in[32], temp_out[32]; local
52 for (int j = 0; j < 32; ++j) temp_in[j] = input[j * 32 + i];
53 reference_32x32_dct_1d(temp_in, temp_out);
58 double temp_in[32], temp_out[32]; local
59 for (int j = 0; j < 32; ++j) temp_in[j] = output[j + i * 32];
60 reference_32x32_dct_1d(temp_in, temp_out);
fdct8x8_test.cc 65 double temp_in[8], temp_out[8]; local
66 for (int j = 0; j < 8; ++j) temp_in[j] = input[j * 8 + i];
67 reference_8x8_dct_1d(temp_in, temp_out);
72 double temp_in[8], temp_out[8]; local
73 for (int j = 0; j < 8; ++j) temp_in[j] = output[j + i * 8];
74 reference_8x8_dct_1d(temp_in, temp_out);
dct16x16_test.cc 210 double temp_in[16], temp_out[16]; local
211 for (int j = 0; j < 16; ++j) temp_in[j] = input[j * 16 + i];
212 butterfly_16x16_dct_1d(temp_in, temp_out);
217 double temp_in[16], temp_out[16]; local
218 for (int j = 0; j < 16; ++j) temp_in[j] = output[j + i * 16];
219 butterfly_16x16_dct_1d(temp_in, temp_out);
  /external/libvpx/libvpx/vp9/common/
vp9_idct.c 32 tran_low_t temp_in[4], temp_out[4]; local
43 for (j = 0; j < 4; ++j) temp_in[j] = out[j * 4 + i];
44 IHT_4[tx_type].cols(temp_in, temp_out);
64 tran_low_t temp_in[8], temp_out[8]; local
76 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i];
77 ht.cols(temp_in, temp_out);
97 tran_low_t temp_in[16], temp_out[16]; local
109 for (j = 0; j < 16; ++j) temp_in[j] = out[j * 16 + i];
110 ht.cols(temp_in, temp_out);
220 tran_low_t temp_in[4], temp_out[4] local
252 tran_low_t temp_in[8], temp_out[8]; local
285 tran_low_t temp_in[16], temp_out[16]; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.c 714 tran_high_t temp_in[32], temp_out[32]; local
715 for (j = 0; j < 32; ++j) temp_in[j] = input[j * stride + i] * 4;
716 vpx_fdct32(temp_in, temp_out, 0);
723 tran_high_t temp_in[32], temp_out[32]; local
724 for (j = 0; j < 32; ++j) temp_in[j] = output[j + i * 32];
725 vpx_fdct32(temp_in, temp_out, 0);
741 tran_high_t temp_in[32], temp_out[32]; local
742 for (j = 0; j < 32; ++j) temp_in[j] = input[j * stride + i] * 4;
743 vpx_fdct32(temp_in, temp_out, 0);
753 tran_high_t temp_in[32], temp_out[32] local
    [all...]
inv_txfm.c 158 tran_low_t temp_in[4], temp_out[4]; local
169 for (j = 0; j < 4; ++j) temp_in[j] = out[j * 4 + i];
170 idct4_c(temp_in, temp_out);
330 tran_low_t temp_in[8], temp_out[8]; local
341 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i];
342 idct8_c(temp_in, temp_out);
354 tran_low_t temp_in[8], temp_out[8]; local
366 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i];
367 idct8_c(temp_in, temp_out);
727 tran_low_t temp_in[16], temp_out[16] local
752 tran_low_t temp_in[16], temp_out[16]; local
778 tran_low_t temp_in[16], temp_out[16]; local
1185 tran_low_t temp_in[32], temp_out[32]; local
1216 tran_low_t temp_in[32], temp_out[32]; local
1242 tran_low_t temp_in[32], temp_out[32]; local
1459 tran_low_t temp_in[4], temp_out[4]; local
1646 tran_low_t temp_in[8], temp_out[8]; local
1671 tran_low_t temp_in[8], temp_out[8]; local
2082 tran_low_t temp_in[16], temp_out[16]; local
2107 tran_low_t temp_in[16], temp_out[16]; local
2135 tran_low_t temp_in[16], temp_out[16]; local
2604 tran_low_t temp_in[32], temp_out[32]; local
2635 tran_low_t temp_in[32], temp_out[32]; local
2663 tran_low_t temp_in[32], temp_out[32]; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 537 tran_low_t temp_in[4], temp_out[4]; local
542 for (j = 0; j < 4; ++j) temp_in[j] = input[j * stride + i] * 16;
543 if (i == 0 && temp_in[0]) temp_in[0] += 1;
544 ht.cols(temp_in, temp_out);
550 for (j = 0; j < 4; ++j) temp_in[j] = out[j + i * 4];
551 ht.rows(temp_in, temp_out);
667 tran_low_t temp_in[8], temp_out[8]; local
672 for (j = 0; j < 8; ++j) temp_in[j] = input[j * stride + i] * 4;
673 ht.cols(temp_in, temp_out)
750 tran_low_t temp_in[16], temp_out[16]; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
fwd_dct32x32_impl_sse2.h 27 tran_high_t temp_in[32], temp_out[32]; local
28 for (j = 0; j < 32; ++j) temp_in[j] = intermediate[j * 32 + i];
29 vpx_fdct32(temp_in, temp_out, 0);
41 tran_high_t temp_in[32], temp_out[32]; local
42 for (j = 0; j < 32; ++j) temp_in[j] = intermediate[j * 32 + i];
43 vpx_fdct32(temp_in, temp_out, 1);
    [all...]

Completed in 234 milliseconds