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

  /external/libvpx/libvpx/test/
idct8x8_test.cc 52 double temp_in[8], temp_out[8]; local
54 temp_in[j] = input[j*8 + i];
55 reference_dct_1d(temp_in, temp_out);
61 double temp_in[8], temp_out[8]; local
63 temp_in[j] = output[j + i*8];
64 reference_dct_1d(temp_in, temp_out);
90 double temp_in[8], temp_out[8]; local
92 temp_in[j] = input[j + i*8];
93 reference_idct_1d(temp_in, temp_out);
99 double temp_in[8], temp_out[8] local
    [all...]
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, 1);
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, 1);
dct16x16_test.cc 241 double temp_in[16], temp_out[16]; local
243 temp_in[j] = input[j * 16 + i];
244 butterfly_16x16_dct_1d(temp_in, temp_out);
250 double temp_in[16], temp_out[16]; local
252 temp_in[j] = output[j + i * 16];
253 butterfly_16x16_dct_1d(temp_in, temp_out);
  /external/libvpx/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_1d(temp_in, temp_out);
208 int16_t temp_in[8], temp_out[8]; local
220 temp_in[j] = out[j * 8 + i];
221 idct8_1d(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
845 int16_t temp_in[16], temp_out[16]; local
1250 int16_t temp_in[32], temp_out[32]; local
1287 int16_t temp_in[32], temp_out[32]; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 159 int16_t temp_in[4], temp_out[4]; local
165 temp_in[j] = input[j * stride + i] * 16;
166 if (i == 0 && temp_in[0])
167 temp_in[0] += 1;
168 ht.cols(temp_in, temp_out);
176 temp_in[j] = out[j + i * 4];
177 ht.rows(temp_in, temp_out);
567 int16_t temp_in[8], temp_out[8]; local
573 temp_in[j] = input[j * stride + i] * 4;
574 ht.cols(temp_in, temp_out)
960 int16_t temp_in[16], temp_out[16]; local
1323 int temp_in[32], temp_out[32]; local
1333 int temp_in[32], temp_out[32]; local
1351 int temp_in[32], temp_out[32]; local
1364 int temp_in[32], temp_out[32]; local
    [all...]
  /external/libvpx/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_1d_columns_add_blk_dspr2(&temp_in[0], dest, dest_stride);
424 temp_in[j] = out[j * 4 + i];
425 iadst4_1d_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_1d_columns_add_blk_dspr2(&temp_in[0], dest, dest_stride);
604 temp_in[j] = out[j * 8 + i];
606 iadst8_1d_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...]

Completed in 373 milliseconds