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

/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans16_dspr2.c29 int16_t temp_out[16]; local
46 iadst16_dspr2(outptr, temp_out);
49 dest[j * pitch + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6) +
88 iadst16_dspr2(temp_in, temp_out);
90 dest[j * pitch + i] = 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
48 iadst4_dspr2(outptr, temp_out);
51 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) +
80 iadst4_dspr2(temp_in, temp_out);
83 dest[j * stride + i] = 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
43 iadst8_dspr2(&out[i * 8], temp_out);
46 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) +
74 iadst8_dspr2(temp_in, temp_out);
77 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) +
/external/libvpx/libvpx/test/
H A Didct8x8_test.cc41 double temp_in[8], temp_out[8]; local
43 reference_dct_1d(temp_in, temp_out);
44 for (int j = 0; j < 8; ++j) output[j * 8 + i] = temp_out[j];
48 double temp_in[8], temp_out[8]; local
50 reference_dct_1d(temp_in, temp_out);
51 for (int j = 0; j < 8; ++j) output[j + i * 8] = temp_out[j];
H A Ddct32x32_test.cc51 double temp_in[32], temp_out[32]; local
53 reference_32x32_dct_1d(temp_in, temp_out);
54 for (int j = 0; j < 32; ++j) output[j * 32 + i] = temp_out[j];
58 double temp_in[32], temp_out[32]; local
60 reference_32x32_dct_1d(temp_in, temp_out);
62 for (int j = 0; j < 32; ++j) output[j + i * 32] = temp_out[j] / 4;
H A Dfdct8x8_test.cc65 double temp_in[8], temp_out[8]; local
67 reference_8x8_dct_1d(temp_in, temp_out);
68 for (int j = 0; j < 8; ++j) output[j * 8 + i] = temp_out[j];
72 double temp_in[8], temp_out[8]; local
74 reference_8x8_dct_1d(temp_in, temp_out);
76 for (int j = 0; j < 8; ++j) output[j + i * 8] = temp_out[j] * 2;
H A Ddct16x16_test.cc210 double temp_in[16], temp_out[16]; local
212 butterfly_16x16_dct_1d(temp_in, temp_out);
213 for (int j = 0; j < 16; ++j) output[j * 16 + i] = temp_out[j];
217 double temp_in[16], temp_out[16]; local
219 butterfly_16x16_dct_1d(temp_in, temp_out);
221 for (int j = 0; j < 16; ++j) output[j + i * 16] = temp_out[j] / 2;
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dhighbd_idct16x16_add_sse2.c117 tran_low_t temp_in[16], temp_out[16]; local
120 vpx_highbd_idct16_c(temp_in, temp_out, bd);
123 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 6), bd);
234 tran_low_t temp_in[16], temp_out[16]; local
237 vpx_highbd_idct16_c(temp_in, temp_out, bd);
240 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 6), bd);
H A Dhighbd_idct8x8_add_sse2.c104 tran_low_t temp_in[8], temp_out[8]; local
107 vpx_highbd_idct8_c(temp_in, temp_out, bd);
110 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 5), bd);
206 tran_low_t temp_in[8], temp_out[8]; local
209 vpx_highbd_idct8_c(temp_in, temp_out, bd);
212 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 5), bd);
H A Dhighbd_idct4x4_add_sse2.c118 tran_low_t temp_in[4], temp_out[4]; local
122 vpx_highbd_idct4_c(temp_in, temp_out, bd);
125 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 4), bd);
H A Dfwd_dct32x32_impl_sse2.h27 tran_high_t temp_in[32], temp_out[32]; local
29 vpx_fdct32(temp_in, temp_out, 0);
32 (tran_low_t)((temp_out[j] + 1 + (temp_out[j] < 0)) >> 2);
41 tran_high_t temp_in[32], temp_out[32]; local
43 vpx_fdct32(temp_in, temp_out, 1);
44 for (j = 0; j < 32; ++j) out[j + i * 32] = (tran_low_t)temp_out[j];
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c32 tran_low_t temp_in[4], temp_out[4]; local
44 IHT_4[tx_type].cols(temp_in, temp_out);
47 ROUND_POWER_OF_TWO(temp_out[j], 4));
64 tran_low_t temp_in[8], temp_out[8]; local
77 ht.cols(temp_in, temp_out);
80 ROUND_POWER_OF_TWO(temp_out[j], 5));
97 tran_low_t temp_in[16], temp_out[16]; local
110 ht.cols(temp_in, temp_out);
113 ROUND_POWER_OF_TWO(temp_out[j], 6));
220 tran_low_t temp_in[4], temp_out[ local
252 tran_low_t temp_in[8], temp_out[8]; local
285 tran_low_t temp_in[16], temp_out[16]; local
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Dfwd_txfm.c714 tran_high_t temp_in[32], temp_out[32]; local
716 vpx_fdct32(temp_in, temp_out, 0);
718 output[j * 32 + i] = (temp_out[j] + 1 + (temp_out[j] > 0)) >> 2;
723 tran_high_t temp_in[32], temp_out[32]; local
725 vpx_fdct32(temp_in, temp_out, 0);
728 (tran_low_t)((temp_out[j] + 1 + (temp_out[j] < 0)) >> 2);
741 tran_high_t temp_in[32], temp_out[32]; local
743 vpx_fdct32(temp_in, temp_out,
753 tran_high_t temp_in[32], temp_out[32]; local
[all...]
H A Dinv_txfm.c157 tran_low_t temp_in[4], temp_out[4]; local
169 idct4_c(temp_in, temp_out);
172 ROUND_POWER_OF_TWO(temp_out[j], 4));
328 tran_low_t temp_in[8], temp_out[8]; local
340 idct8_c(temp_in, temp_out);
343 ROUND_POWER_OF_TWO(temp_out[j], 5));
352 tran_low_t temp_in[8], temp_out[8]; local
365 idct8_c(temp_in, temp_out);
368 ROUND_POWER_OF_TWO(temp_out[j], 5));
724 tran_low_t temp_in[16], temp_out[1 local
749 tran_low_t temp_in[16], temp_out[16]; local
775 tran_low_t temp_in[16], temp_out[16]; local
1181 tran_low_t temp_in[32], temp_out[32]; local
1212 tran_low_t temp_in[32], temp_out[32]; local
1238 tran_low_t temp_in[32], temp_out[32]; local
1452 tran_low_t temp_in[4], temp_out[4]; local
1634 tran_low_t temp_in[8], temp_out[8]; local
1659 tran_low_t temp_in[8], temp_out[8]; local
2051 tran_low_t temp_in[16], temp_out[16]; local
2076 tran_low_t temp_in[16], temp_out[16]; local
2104 tran_low_t temp_in[16], temp_out[16]; local
2522 tran_low_t temp_in[32], temp_out[32]; local
2553 tran_low_t temp_in[32], temp_out[32]; local
2581 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
544 ht.cols(temp_in, temp_out);
545 for (j = 0; j < 4; ++j) out[j * 4 + i] = temp_out[j];
551 ht.rows(temp_in, temp_out);
552 for (j = 0; j < 4; ++j) output[j + i * 4] = (temp_out[j] + 1) >> 2;
667 tran_low_t temp_in[8], temp_out[8]; local
673 ht.cols(temp_in, temp_out);
674 for (j = 0; j < 8; ++j) out[j * 8 + i] = temp_out[j];
680 ht.rows(temp_in, temp_out);
682 output[j + i * 8] = (temp_out[
750 tran_low_t temp_in[16], temp_out[16]; local
[all...]

Completed in 239 milliseconds