Searched defs:temp_out (Results 1 - 13 of 13) sorted by relevance

/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans16_dspr2.c29 int16_t temp_out[16]; local
50 iadst16_dspr2(outptr, temp_out);
54 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6)
95 iadst16_dspr2(temp_in, temp_out);
98 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6)
H A Dvp9_itrans4_dspr2.c29 int16_t temp_in[4 * 4], temp_out[4]; local
50 iadst4_dspr2(outptr, temp_out);
54 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4)
84 iadst4_dspr2(temp_in, temp_out);
88 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4)
H A Dvp9_itrans8_dspr2.c28 int16_t temp_in[8 * 8], temp_out[8]; local
47 iadst8_dspr2(&out[i * 8], temp_out);
51 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5)
80 iadst8_dspr2(temp_in, temp_out);
84 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5)
/external/libvpx/libvpx/test/
H A Didct8x8_test.cc49 double temp_in[8], temp_out[8]; local
52 reference_dct_1d(temp_in, temp_out);
54 output[j*8 + i] = temp_out[j];
58 double temp_in[8], temp_out[8]; local
61 reference_dct_1d(temp_in, temp_out);
63 output[j + i*8] = temp_out[j];
H A Ddct32x32_test.cc58 double temp_in[32], temp_out[32]; local
61 reference_32x32_dct_1d(temp_in, temp_out);
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);
73 output[j + i * 32] = temp_out[j] / 4;
H A Dfdct8x8_test.cc65 double temp_in[8], temp_out[8]; local
68 reference_8x8_dct_1d(temp_in, temp_out, 1);
70 output[j * 8 + i] = temp_out[j];
74 double temp_in[8], temp_out[8]; local
77 reference_8x8_dct_1d(temp_in, temp_out, 1);
80 output[j + i * 8] = temp_out[j] * 2;
H A Ddct16x16_test.cc218 double temp_in[16], temp_out[16]; local
221 butterfly_16x16_dct_1d(temp_in, temp_out);
223 output[j * 16 + i] = temp_out[j];
227 double temp_in[16], temp_out[16]; local
230 butterfly_16x16_dct_1d(temp_in, temp_out);
233 output[j + i * 16] = temp_out[j]/2;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c32 tran_low_t temp_in[4], temp_out[4]; local
45 IHT_4[tx_type].cols(temp_in, temp_out);
48 ROUND_POWER_OF_TWO(temp_out[j], 4));
65 tran_low_t temp_in[8], temp_out[8]; local
79 ht.cols(temp_in, temp_out);
82 ROUND_POWER_OF_TWO(temp_out[j], 5));
99 tran_low_t temp_in[16], temp_out[16]; local
113 ht.cols(temp_in, temp_out);
116 ROUND_POWER_OF_TWO(temp_out[j], 6));
222 tran_low_t temp_in[4], temp_out[ 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/
H A Dfwd_txfm.c721 tran_high_t temp_in[32], temp_out[32]; local
724 vpx_fdct32(temp_in, temp_out, 0);
726 output[j * 32 + i] = (temp_out[j] + 1 + (temp_out[j] > 0)) >> 2;
731 tran_high_t temp_in[32], temp_out[32]; local
734 vpx_fdct32(temp_in, temp_out, 0);
737 (tran_low_t)((temp_out[j] + 1 + (temp_out[j] < 0)) >> 2);
750 tran_high_t temp_in[32], temp_out[32]; local
753 vpx_fdct32(temp_in, temp_out,
763 tran_high_t temp_in[32], temp_out[32]; local
[all...]
H A Dinv_txfm.c118 tran_low_t temp_in[4], temp_out[4]; local
131 idct4_c(temp_in, temp_out);
134 ROUND_POWER_OF_TWO(temp_out[j], 4));
214 tran_low_t temp_in[8], temp_out[8]; local
227 idct8_c(temp_in, temp_out);
230 ROUND_POWER_OF_TWO(temp_out[j], 5));
366 tran_low_t temp_in[8], temp_out[8]; local
380 idct8_c(temp_in, temp_out);
383 ROUND_POWER_OF_TWO(temp_out[j], 5));
558 tran_low_t temp_in[16], temp_out[1 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...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c537 tran_low_t temp_in[4], temp_out[4]; local
546 ht.cols(temp_in, temp_out);
548 out[j * 4 + i] = temp_out[j];
555 ht.rows(temp_in, temp_out);
557 output[j + i * 4] = (temp_out[j] + 1) >> 2;
681 tran_low_t temp_in[8], temp_out[8]; local
688 ht.cols(temp_in, temp_out);
690 out[j * 8 + i] = temp_out[j];
697 ht.rows(temp_in, temp_out);
699 output[j + i * 8] = (temp_out[
767 tran_low_t temp_in[16], temp_out[16]; local
[all...]
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dinv_txfm_sse2.c3609 tran_low_t temp_in[4], temp_out[4]; local
3614 vpx_highbd_idct4_c(temp_in, temp_out, bd);
3617 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 4), bd);
3711 tran_low_t temp_in[8], temp_out[8]; local
3715 vpx_highbd_idct8_c(temp_in, temp_out, bd);
3718 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 5), bd);
3815 tran_low_t temp_in[8], temp_out[8]; local
3819 vpx_highbd_idct8_c(temp_in, temp_out, bd);
3822 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 5), bd);
3929 tran_low_t temp_in[16], temp_out[1 local
4048 tran_low_t temp_in[16], temp_out[16]; local
[all...]
H A Dfwd_dct32x32_impl_sse2.h27 tran_high_t temp_in[32], temp_out[32]; local
30 vpx_fdct32(temp_in, temp_out, 0);
33 (tran_low_t)((temp_out[j] + 1 + (temp_out[j] < 0)) >> 2);
42 tran_high_t temp_in[32], temp_out[32]; local
45 vpx_fdct32(temp_in, temp_out, 1);
47 out[j + i * 32] = (tran_low_t)temp_out[j];

Completed in 204 milliseconds