Searched refs:temp_out (Results 1 - 10 of 10) sorted by relevance

/external/libvpx/libvpx/test/
H A Didct8x8_test.cc52 double temp_in[8], temp_out[8]; local
55 reference_dct_1d(temp_in, temp_out);
57 output[j*8 + i] = temp_out[j];
61 double temp_in[8], temp_out[8]; local
64 reference_dct_1d(temp_in, temp_out);
66 output[j + i*8] = temp_out[j];
90 double temp_in[8], temp_out[8]; local
93 reference_idct_1d(temp_in, temp_out);
95 out[j + i*8] = temp_out[j];
99 double temp_in[8], temp_out[ local
[all...]
H A Ddct32x32_test.cc58 double temp_in[32], temp_out[32]; local
61 reference_32x32_dct_1d(temp_in, temp_out, 1);
63 output[j * 32 + i] = temp_out[j];
67 double temp_in[32], temp_out[32]; local
70 reference_32x32_dct_1d(temp_in, temp_out, 1);
73 output[j + i * 32] = temp_out[j] / 4;
H A Ddct16x16_test.cc241 double temp_in[16], temp_out[16]; local
244 butterfly_16x16_dct_1d(temp_in, temp_out);
246 output[j * 16 + i] = temp_out[j];
250 double temp_in[16], temp_out[16]; local
253 butterfly_16x16_dct_1d(temp_in, temp_out);
256 output[j + i * 16] = temp_out[j]/2;
/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans4_dspr2.c370 int16_t temp_in[4 * 4], temp_out[4]; local
391 iadst4_1d_dspr2(outptr, temp_out);
395 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4)
425 iadst4_1d_dspr2(temp_in, temp_out);
429 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4)
H A Dvp9_itrans8_dspr2.c554 int16_t temp_in[8 * 8], temp_out[8]; local
573 iadst8_1d_dspr2(&out[i * 8], temp_out);
577 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5)
606 iadst8_1d_dspr2(temp_in, temp_out);
610 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5)
H A Dvp9_itrans16_dspr2.c1090 int16_t temp_out[16]; local
1111 iadst16_1d(outptr, temp_out);
1115 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6)
1156 iadst16_1d(temp_in, temp_out);
1159 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6)
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c123 int16_t temp_in[4], temp_out[4]; local
136 idct4_1d(temp_in, temp_out);
138 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4)
208 int16_t temp_in[8], temp_out[8]; local
221 idct8_1d(temp_in, temp_out);
223 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5)
295 int16_t temp_in[4], temp_out[4]; local
308 IHT_4[tx_type].cols(temp_in, temp_out);
310 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4)
403 int16_t temp_in[8], temp_out[ 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/
H A Dvp9_dct.c159 int16_t temp_in[4], temp_out[4]; local
168 ht.cols(temp_in, temp_out);
170 outptr[j * 4 + i] = temp_out[j];
177 ht.rows(temp_in, temp_out);
179 output[j + i * 4] = (temp_out[j] + 1) >> 2;
567 int16_t temp_in[8], temp_out[8]; local
574 ht.cols(temp_in, temp_out);
576 outptr[j * 8 + i] = temp_out[j];
583 ht.rows(temp_in, temp_out);
585 output[j + i * 8] = (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/arm/neon/
H A Dvp9_short_iht4x4_add_neon.asm210 ; ROUND_POWER_OF_TWO(temp_out[j], 4)
219 ; ROUND_POWER_OF_TWO(temp_out[j], 4) + dest[j * dest_stride + i]
H A Dvp9_short_iht8x8_add_neon.asm641 ; ROUND_POWER_OF_TWO(temp_out[j], 5)
664 ; ROUND_POWER_OF_TWO(temp_out[j], 5) + dest[j * dest_stride + i]

Completed in 119 milliseconds