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

/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Didct8x8_test.cc50 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[ local
[all...]
H A Ddct32x32_test.cc56 double temp_in[32], temp_out[32]; local
58 temp_in[j] = input[j*32 + i];
59 reference_32x32_dct_1d(temp_in, temp_out);
65 double temp_in[32], temp_out[32]; local
67 temp_in[j] = output[j + i*32];
68 reference_32x32_dct_1d(temp_in, temp_out);
H A Dfdct8x8_test.cc43 double temp_in[8], temp_out[8]; local
45 temp_in[j] = input[j*8 + i];
46 reference_8x8_dct_1d(temp_in, temp_out, 1);
52 double temp_in[8], temp_out[8]; local
54 temp_in[j] = output[j + i*8];
55 reference_8x8_dct_1d(temp_in, temp_out, 1);
H A Ddct16x16_test.cc239 double temp_in[16], temp_out[16]; local
241 temp_in[j] = input[j * 16 + i];
242 butterfly_16x16_dct_1d(temp_in, temp_out);
248 double temp_in[16], temp_out[16]; local
250 temp_in[j] = output[j + i * 16];
251 butterfly_16x16_dct_1d(temp_in, temp_out);
/external/libvpx/libvpx/test/
H A Didct8x8_test.cc50 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[ local
[all...]
H A Ddct32x32_test.cc55 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);
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/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans4_dspr2.c370 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);
H A Dvp9_itrans8_dspr2.c554 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);
H A Dvp9_itrans16_dspr2.c1122 int16_t temp_in[16 * 16]; local
1135 temp_in[j * 16 + i] = out[i * 16 + j];
1137 idct16_cols_add_blk_dspr2(temp_in, dest, pitch);
1142 int16_t temp_in[16]; local
1155 temp_in[j] = out[j * 16 + i];
1156 iadst16(temp_in, temp_out);
/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans4_dspr2.c370 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);
H A Dvp9_itrans8_dspr2.c554 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);
H A Dvp9_itrans16_dspr2.c1122 int16_t temp_in[16 * 16]; local
1135 temp_in[j * 16 + i] = out[i * 16 + j];
1137 idct16_cols_add_blk_dspr2(temp_in, dest, pitch);
1142 int16_t temp_in[16]; local
1155 temp_in[j] = out[j * 16 + i];
1156 iadst16(temp_in, temp_out);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_dct.c181 tran_low_t temp_in[4], temp_out[4]; local
187 temp_in[j] = input[j * stride + i] * 16;
188 if (i == 0 && temp_in[0])
189 temp_in[0] += 1;
190 ht.cols(temp_in, temp_out);
198 temp_in[j] = out[j + i * 4];
199 ht.rows(temp_in, temp_out);
617 tran_low_t temp_in[8], temp_out[8]; local
623 temp_in[j] = input[j * stride + i] * 4;
624 ht.cols(temp_in, temp_ou
1016 tran_low_t temp_in[16], temp_out[16]; local
1392 tran_high_t temp_in[32], temp_out[32]; local
1402 tran_high_t temp_in[32], temp_out[32]; local
1420 tran_high_t temp_in[32], temp_out[32]; local
1433 tran_high_t temp_in[32], temp_out[32]; local
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c123 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[ 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...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c166 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_ou
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/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_idct.c156 tran_low_t temp_in[4], temp_out[4]; local
168 temp_in[j] = out[j * 4 + i];
169 idct4(temp_in, temp_out);
242 tran_low_t temp_in[8], temp_out[8]; local
254 temp_in[j] = out[j * 8 + i];
255 idct8(temp_in, temp_out);
329 tran_low_t temp_in[4], temp_out[4]; local
341 temp_in[j] = out[j * 4 + i];
342 IHT_4[tx_type].cols(temp_in, temp_out);
437 tran_low_t temp_in[ local
462 tran_low_t temp_in[8], temp_out[8]; local
653 tran_low_t temp_in[16], temp_out[16]; local
857 tran_low_t temp_in[16], temp_out[16]; local
883 tran_low_t temp_in[16], temp_out[16]; local
1289 tran_low_t temp_in[32], temp_out[32]; local
1327 tran_low_t temp_in[32], temp_out[32]; local
1560 tran_low_t temp_in[4], temp_out[4]; local
1650 tran_low_t temp_in[8], temp_out[8]; local
1743 tran_low_t temp_in[4], temp_out[4]; local
1852 tran_low_t temp_in[8], temp_out[8]; local
1879 tran_low_t temp_in[8], temp_out[8]; local
2071 tran_low_t temp_in[16], temp_out[16]; local
2274 tran_low_t temp_in[16], temp_out[16]; local
2301 tran_low_t temp_in[16], temp_out[16]; local
2712 tran_low_t temp_in[32], temp_out[32]; local
2751 tran_low_t temp_in[32], temp_out[32]; local
[all...]

Completed in 223 milliseconds