Home
last modified time | relevance | path

Searched refs:temp_out (Results 1 – 15 of 15) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_idct.c32 tran_low_t temp_in[4], temp_out[4]; in vp9_iht4x4_16_add_c() local
45 IHT_4[tx_type].cols(temp_in, temp_out); in vp9_iht4x4_16_add_c()
48 ROUND_POWER_OF_TWO(temp_out[j], 4)); in vp9_iht4x4_16_add_c()
65 tran_low_t temp_in[8], temp_out[8]; in vp9_iht8x8_64_add_c() local
79 ht.cols(temp_in, temp_out); in vp9_iht8x8_64_add_c()
82 ROUND_POWER_OF_TWO(temp_out[j], 5)); in vp9_iht8x8_64_add_c()
99 tran_low_t temp_in[16], temp_out[16]; in vp9_iht16x16_256_add_c() local
113 ht.cols(temp_in, temp_out); in vp9_iht16x16_256_add_c()
116 ROUND_POWER_OF_TWO(temp_out[j], 6)); in vp9_iht16x16_256_add_c()
222 tran_low_t temp_in[4], temp_out[4]; in vp9_highbd_iht4x4_16_add_c() local
[all …]
/external/libvpx/libvpx/test/
Didct8x8_test.cc49 double temp_in[8], temp_out[8]; in reference_dct_2d() local
52 reference_dct_1d(temp_in, temp_out); in reference_dct_2d()
54 output[j*8 + i] = temp_out[j]; in reference_dct_2d()
58 double temp_in[8], temp_out[8]; in reference_dct_2d() local
61 reference_dct_1d(temp_in, temp_out); in reference_dct_2d()
63 output[j + i*8] = temp_out[j]; in reference_dct_2d()
Ddct32x32_test.cc58 double temp_in[32], temp_out[32]; in reference_32x32_dct_2d() local
61 reference_32x32_dct_1d(temp_in, temp_out); in reference_32x32_dct_2d()
63 output[j * 32 + i] = temp_out[j]; in reference_32x32_dct_2d()
67 double temp_in[32], temp_out[32]; in reference_32x32_dct_2d() local
70 reference_32x32_dct_1d(temp_in, temp_out); in reference_32x32_dct_2d()
73 output[j + i * 32] = temp_out[j] / 4; in reference_32x32_dct_2d()
Dfdct8x8_test.cc65 double temp_in[8], temp_out[8]; in reference_8x8_dct_2d() local
68 reference_8x8_dct_1d(temp_in, temp_out, 1); in reference_8x8_dct_2d()
70 output[j * 8 + i] = temp_out[j]; in reference_8x8_dct_2d()
74 double temp_in[8], temp_out[8]; in reference_8x8_dct_2d() local
77 reference_8x8_dct_1d(temp_in, temp_out, 1); in reference_8x8_dct_2d()
80 output[j + i * 8] = temp_out[j] * 2; in reference_8x8_dct_2d()
Ddct16x16_test.cc218 double temp_in[16], temp_out[16]; in reference_16x16_dct_2d() local
221 butterfly_16x16_dct_1d(temp_in, temp_out); in reference_16x16_dct_2d()
223 output[j * 16 + i] = temp_out[j]; in reference_16x16_dct_2d()
227 double temp_in[16], temp_out[16]; in reference_16x16_dct_2d() local
230 butterfly_16x16_dct_1d(temp_in, temp_out); in reference_16x16_dct_2d()
233 output[j + i * 16] = temp_out[j]/2; in reference_16x16_dct_2d()
/external/libvpx/libvpx/vp9/common/mips/dspr2/
Dvp9_itrans8_dspr2.c28 int16_t temp_in[8 * 8], temp_out[8]; in vp9_iht8x8_64_add_dspr2() local
47 iadst8_dspr2(&out[i * 8], temp_out); in vp9_iht8x8_64_add_dspr2()
51 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) in vp9_iht8x8_64_add_dspr2()
80 iadst8_dspr2(temp_in, temp_out); in vp9_iht8x8_64_add_dspr2()
84 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) in vp9_iht8x8_64_add_dspr2()
Dvp9_itrans4_dspr2.c29 int16_t temp_in[4 * 4], temp_out[4]; in vp9_iht4x4_16_add_dspr2() local
50 iadst4_dspr2(outptr, temp_out); in vp9_iht4x4_16_add_dspr2()
54 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) in vp9_iht4x4_16_add_dspr2()
84 iadst4_dspr2(temp_in, temp_out); in vp9_iht4x4_16_add_dspr2()
88 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) in vp9_iht4x4_16_add_dspr2()
Dvp9_itrans16_dspr2.c29 int16_t temp_out[16]; in vp9_iht16x16_256_add_dspr2() local
50 iadst16_dspr2(outptr, temp_out); in vp9_iht16x16_256_add_dspr2()
54 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6) in vp9_iht16x16_256_add_dspr2()
95 iadst16_dspr2(temp_in, temp_out); in vp9_iht16x16_256_add_dspr2()
98 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6) in vp9_iht16x16_256_add_dspr2()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_dct.c537 tran_low_t temp_in[4], temp_out[4]; in vp9_fht4x4_c() local
546 ht.cols(temp_in, temp_out); in vp9_fht4x4_c()
548 out[j * 4 + i] = temp_out[j]; in vp9_fht4x4_c()
555 ht.rows(temp_in, temp_out); in vp9_fht4x4_c()
557 output[j + i * 4] = (temp_out[j] + 1) >> 2; in vp9_fht4x4_c()
681 tran_low_t temp_in[8], temp_out[8]; in vp9_fht8x8_c() local
688 ht.cols(temp_in, temp_out); in vp9_fht8x8_c()
690 out[j * 8 + i] = temp_out[j]; in vp9_fht8x8_c()
697 ht.rows(temp_in, temp_out); in vp9_fht8x8_c()
699 output[j + i * 8] = (temp_out[j] + (temp_out[j] < 0)) >> 1; in vp9_fht8x8_c()
[all …]
/external/libvpx/libvpx/vpx_dsp/
Dfwd_txfm.c721 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_c() local
724 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_c()
726 output[j * 32 + i] = (temp_out[j] + 1 + (temp_out[j] > 0)) >> 2; in vpx_fdct32x32_c()
731 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_c() local
734 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_c()
737 (tran_low_t)((temp_out[j] + 1 + (temp_out[j] < 0)) >> 2); in vpx_fdct32x32_c()
750 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rd_c() local
753 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_rd_c()
758 output[j * 32 + i] = (temp_out[j] + 1 + (temp_out[j] > 0)) >> 2; in vpx_fdct32x32_rd_c()
763 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rd_c() local
[all …]
Dinv_txfm.c118 tran_low_t temp_in[4], temp_out[4]; in vpx_idct4x4_16_add_c() local
131 idct4_c(temp_in, temp_out); in vpx_idct4x4_16_add_c()
134 ROUND_POWER_OF_TWO(temp_out[j], 4)); in vpx_idct4x4_16_add_c()
214 tran_low_t temp_in[8], temp_out[8]; in vpx_idct8x8_64_add_c() local
227 idct8_c(temp_in, temp_out); in vpx_idct8x8_64_add_c()
230 ROUND_POWER_OF_TWO(temp_out[j], 5)); in vpx_idct8x8_64_add_c()
366 tran_low_t temp_in[8], temp_out[8]; in vpx_idct8x8_12_add_c() local
380 idct8_c(temp_in, temp_out); in vpx_idct8x8_12_add_c()
383 ROUND_POWER_OF_TWO(temp_out[j], 5)); in vpx_idct8x8_12_add_c()
558 tran_low_t temp_in[16], temp_out[16]; in vpx_idct16x16_256_add_c() local
[all …]
/external/libvpx/libvpx/vpx_dsp/arm/
Didct4x4_add_neon.asm160 ; temp_out[0, 1] = d16, d17 = q8
161 ; temp_out[2, 3] = d19, d18 = q9 swapped
163 ; ROUND_POWER_OF_TWO(temp_out[j], 4)
172 ; ROUND_POWER_OF_TWO(temp_out[j], 4) + dest[j * dest_stride + i]
Didct8x8_add_neon.asm255 ; ROUND_POWER_OF_TWO(temp_out[j], 5)
278 ; ROUND_POWER_OF_TWO(temp_out[j], 5) + dest[j * dest_stride + i]
461 ; ROUND_POWER_OF_TWO(temp_out[j], 5)
484 ; ROUND_POWER_OF_TWO(temp_out[j], 5) + dest[j * dest_stride + i]
/external/libvpx/libvpx/vpx_dsp/x86/
Dinv_txfm_sse2.c3609 tran_low_t temp_in[4], temp_out[4]; in vpx_highbd_idct4x4_16_add_sse2() local
3614 vpx_highbd_idct4_c(temp_in, temp_out, bd); in vpx_highbd_idct4x4_16_add_sse2()
3617 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 4), bd); in vpx_highbd_idct4x4_16_add_sse2()
3711 tran_low_t temp_in[8], temp_out[8]; in vpx_highbd_idct8x8_64_add_sse2() local
3715 vpx_highbd_idct8_c(temp_in, temp_out, bd); in vpx_highbd_idct8x8_64_add_sse2()
3718 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 5), bd); in vpx_highbd_idct8x8_64_add_sse2()
3815 tran_low_t temp_in[8], temp_out[8]; in vpx_highbd_idct8x8_10_add_sse2() local
3819 vpx_highbd_idct8_c(temp_in, temp_out, bd); in vpx_highbd_idct8x8_10_add_sse2()
3822 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 5), bd); in vpx_highbd_idct8x8_10_add_sse2()
3929 tran_low_t temp_in[16], temp_out[16]; in vpx_highbd_idct16x16_256_add_sse2() local
[all …]
Dfwd_dct32x32_impl_sse2.h27 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rows_c() local
30 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_rows_c()
33 (tran_low_t)((temp_out[j] + 1 + (temp_out[j] < 0)) >> 2); in vpx_fdct32x32_rows_c()
42 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rd_rows_c() local
45 vpx_fdct32(temp_in, temp_out, 1); in vpx_fdct32x32_rd_rows_c()
47 out[j + i * 32] = (tran_low_t)temp_out[j]; in vpx_fdct32x32_rd_rows_c()