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

  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_itrans16_dspr2.c 61 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);
vp9_itrans4_dspr2.c 29 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);
vp9_itrans8_dspr2.c 28 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/
idct8x8_test.cc 49 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);
dct32x32_test.cc 58 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);
fdct8x8_test.cc 65 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);
dct16x16_test.cc 218 double temp_in[16], temp_out[16]; local
220 temp_in[j] = input[j * 16 + i];
221 butterfly_16x16_dct_1d(temp_in, temp_out);
227 double temp_in[16], temp_out[16]; local
229 temp_in[j] = output[j + i * 16];
230 butterfly_16x16_dct_1d(temp_in, temp_out);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
dct32x32_test.cc 55 double temp_in[32], temp_out[32]; local
57 temp_in[j] = input[j*32 + i];
58 reference_32x32_dct_1d(temp_in, temp_out, 1);
64 double temp_in[32], temp_out[32]; local
66 temp_in[j] = output[j + i*32];
67 reference_32x32_dct_1d(temp_in, temp_out, 1);
idct8x8_test.cc 50 double temp_in[8], temp_out[8]; local
52 temp_in[j] = input[j*8 + i];
53 reference_dct_1d(temp_in, temp_out);
59 double temp_in[8], temp_out[8]; local
61 temp_in[j] = output[j + i*8];
62 reference_dct_1d(temp_in, temp_out);
88 double temp_in[8], temp_out[8]; local
90 temp_in[j] = input[j + i*8];
91 reference_idct_1d(temp_in, temp_out);
97 double temp_in[8], temp_out[8] local
    [all...]
dct16x16_test.cc 242 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/
vp9_idct.c 32 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[4], temp_out[4] 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/
fwd_txfm.c 721 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[32], temp_out[32] local
    [all...]
inv_txfm.c 118 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);
214 tran_low_t temp_in[8], temp_out[8]; local
226 temp_in[j] = out[j * 8 + i];
227 idct8_c(temp_in, temp_out);
366 tran_low_t temp_in[8], temp_out[8]; local
379 temp_in[j] = out[j * 8 + i];
380 idct8_c(temp_in, temp_out);
558 tran_low_t temp_in[16], temp_out[16] local
756 tran_low_t temp_in[16], temp_out[16]; local
1163 tran_low_t temp_in[32], temp_out[32]; local
1202 tran_low_t temp_in[32], temp_out[32]; local
1353 tran_low_t temp_in[4], temp_out[4]; local
1445 tran_low_t temp_in[8], temp_out[8]; local
1603 tran_low_t temp_in[8], temp_out[8]; local
1796 tran_low_t temp_in[16], temp_out[16]; local
1993 tran_low_t temp_in[16], temp_out[16]; local
2407 tran_low_t temp_in[32], temp_out[32]; local
2447 tran_low_t temp_in[32], temp_out[32]; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/
vp9_itrans4_dspr2.c 370 int16_t temp_in[4 * 4], temp_out[4]; local
410 temp_in[i * 4 + j] = out[j * 4 + i];
413 vp9_idct4_columns_add_blk_dspr2(&temp_in[0], dest, dest_stride);
424 temp_in[j] = out[j * 4 + i];
425 iadst4_dspr2(temp_in, temp_out);
vp9_itrans8_dspr2.c 554 int16_t temp_in[8 * 8], temp_out[8]; local
590 temp_in[i * 8 + j] = out[j * 8 + i];
593 idct8_columns_add_blk_dspr2(&temp_in[0], dest, dest_stride);
604 temp_in[j] = out[j * 8 + i];
606 iadst8_dspr2(temp_in, temp_out);
    [all...]
vp9_itrans16_dspr2.c 1122 int16_t temp_in[16 * 16]; local
1142 int16_t temp_in[16]; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 537 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_out)
767 tran_low_t temp_in[16], temp_out[16]; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_idct.c 123 int16_t temp_in[4], temp_out[4]; local
135 temp_in[j] = out[j * 4 + i];
136 idct4(temp_in, temp_out);
208 int16_t temp_in[8], temp_out[8]; local
220 temp_in[j] = out[j * 8 + i];
221 idct8(temp_in, temp_out);
295 int16_t temp_in[4], temp_out[4]; local
307 temp_in[j] = out[j * 4 + i];
308 IHT_4[tx_type].cols(temp_in, temp_out);
403 int16_t temp_in[8], temp_out[8] local
428 int16_t temp_in[8], temp_out[8]; local
618 int16_t temp_in[16], temp_out[16]; local
821 int16_t temp_in[16], temp_out[16]; local
846 int16_t temp_in[16], temp_out[16]; local
1251 int16_t temp_in[32], temp_out[32]; local
1288 int16_t temp_in[32], temp_out[32]; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_dct.c 166 int16_t temp_in[4], temp_out[4]; local
172 temp_in[j] = input[j * stride + i] * 16;
173 if (i == 0 && temp_in[0])
174 temp_in[0] += 1;
175 ht.cols(temp_in, temp_out);
183 temp_in[j] = out[j + i * 4];
184 ht.rows(temp_in, temp_out);
578 int16_t temp_in[8], temp_out[8]; local
584 temp_in[j] = input[j * stride + i] * 4;
585 ht.cols(temp_in, temp_out)
975 int16_t temp_in[16], temp_out[16]; local
1338 int temp_in[32], temp_out[32]; local
1348 int temp_in[32], temp_out[32]; local
1366 int temp_in[32], temp_out[32]; local
1379 int temp_in[32], temp_out[32]; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
inv_txfm_sse2.c 3609 tran_low_t temp_in[4], temp_out[4]; local
3711 tran_low_t temp_in[8], temp_out[8]; local
3815 tran_low_t temp_in[8], temp_out[8]; local
3929 tran_low_t temp_in[16], temp_out[16]; local
4048 tran_low_t temp_in[16], temp_out[16]; local
    [all...]
fwd_dct32x32_impl_sse2.h 27 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);
    [all...]

Completed in 1241 milliseconds