HomeSort by relevance Sort by last modified time
    Searched refs:temp_out (Results 1 - 13 of 13) sorted by null

  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_itrans8_dspr2.c 28 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) +
vp9_itrans16_dspr2.c 29 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) +
vp9_itrans4_dspr2.c 29 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) +
  /external/libvpx/libvpx/test/
idct8x8_test.cc 41 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];
dct32x32_test.cc 51 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;
dct16x16_test.cc 210 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;
fdct8x8_test.cc 65 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;
  /external/libvpx/libvpx/vp9/common/
vp9_idct.c 32 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[4] local
252 tran_low_t temp_in[8], temp_out[8]; local
285 tran_low_t temp_in[16], temp_out[16]; local
    [all...]
  /system/extras/verity/fec/tests/
fec.py 65 temp_out = tempfile.NamedTemporaryFile()
73 if decode(temp_cor.name, temp_fec.name, temp_out.name) != 0:
76 if compare(temp_img.name, temp_out.name) != 0:
83 if decode(temp_cor.name, temp_fec.name, temp_out.name) == 0:
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 537 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[j] + (temp_out[j] < 0)) >> 1
750 tran_low_t temp_in[16], temp_out[16]; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.c 714 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, 0)
753 tran_high_t temp_in[32], temp_out[32]; local
    [all...]
inv_txfm.c 158 tran_low_t temp_in[4], temp_out[4]; local
170 idct4_c(temp_in, temp_out);
173 ROUND_POWER_OF_TWO(temp_out[j], 4));
330 tran_low_t temp_in[8], temp_out[8]; local
342 idct8_c(temp_in, temp_out);
345 ROUND_POWER_OF_TWO(temp_out[j], 5));
354 tran_low_t temp_in[8], temp_out[8]; local
367 idct8_c(temp_in, temp_out);
370 ROUND_POWER_OF_TWO(temp_out[j], 5));
727 tran_low_t temp_in[16], temp_out[16] local
752 tran_low_t temp_in[16], temp_out[16]; local
778 tran_low_t temp_in[16], temp_out[16]; local
1185 tran_low_t temp_in[32], temp_out[32]; local
1216 tran_low_t temp_in[32], temp_out[32]; local
1242 tran_low_t temp_in[32], temp_out[32]; local
1459 tran_low_t temp_in[4], temp_out[4]; local
1646 tran_low_t temp_in[8], temp_out[8]; local
1671 tran_low_t temp_in[8], temp_out[8]; local
2082 tran_low_t temp_in[16], temp_out[16]; local
2107 tran_low_t temp_in[16], temp_out[16]; local
2135 tran_low_t temp_in[16], temp_out[16]; local
2604 tran_low_t temp_in[32], temp_out[32]; local
2635 tran_low_t temp_in[32], temp_out[32]; local
2663 tran_low_t temp_in[32], temp_out[32]; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
fwd_dct32x32_impl_sse2.h 27 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];
    [all...]

Completed in 359 milliseconds