/external/libvpx/libvpx/vp9/common/ |
D | vp9_idct.c | 32 tran_low_t temp_in[4], temp_out[4]; in vp9_iht4x4_16_add_c() local 43 for (j = 0; j < 4; ++j) temp_in[j] = out[j * 4 + i]; in vp9_iht4x4_16_add_c() 44 IHT_4[tx_type].cols(temp_in, temp_out); in vp9_iht4x4_16_add_c() 64 tran_low_t temp_in[8], temp_out[8]; in vp9_iht8x8_64_add_c() local 76 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i]; in vp9_iht8x8_64_add_c() 77 ht.cols(temp_in, temp_out); in vp9_iht8x8_64_add_c() 97 tran_low_t temp_in[16], temp_out[16]; in vp9_iht16x16_256_add_c() local 109 for (j = 0; j < 16; ++j) temp_in[j] = out[j * 16 + i]; in vp9_iht16x16_256_add_c() 110 ht.cols(temp_in, temp_out); in vp9_iht16x16_256_add_c() 220 tran_low_t temp_in[4], temp_out[4]; in vp9_highbd_iht4x4_16_add_c() local [all …]
|
/external/libvpx/libvpx/vp9/common/mips/dspr2/ |
D | vp9_itrans16_dspr2.c | 56 int16_t temp_in[16 * 16]; in vp9_iht16x16_256_add_dspr2() local 68 for (j = 0; j < 16; ++j) temp_in[j * 16 + i] = out[i * 16 + j]; in vp9_iht16x16_256_add_dspr2() 70 idct16_cols_add_blk_dspr2(temp_in, dest, pitch); in vp9_iht16x16_256_add_dspr2() 75 int16_t temp_in[16]; in vp9_iht16x16_256_add_dspr2() local 87 for (j = 0; j < 16; ++j) temp_in[j] = out[j * 16 + i]; in vp9_iht16x16_256_add_dspr2() 88 iadst16_dspr2(temp_in, temp_out); in vp9_iht16x16_256_add_dspr2()
|
D | vp9_itrans4_dspr2.c | 29 int16_t temp_in[4 * 4], temp_out[4]; in vp9_iht4x4_16_add_dspr2() local 66 temp_in[i * 4 + j] = out[j * 4 + i]; in vp9_iht4x4_16_add_dspr2() 69 vpx_idct4_columns_add_blk_dspr2(&temp_in[0], dest, stride); in vp9_iht4x4_16_add_dspr2() 79 for (j = 0; j < 4; ++j) temp_in[j] = out[j * 4 + i]; in vp9_iht4x4_16_add_dspr2() 80 iadst4_dspr2(temp_in, temp_out); in vp9_iht4x4_16_add_dspr2()
|
D | vp9_itrans8_dspr2.c | 28 int16_t temp_in[8 * 8], temp_out[8]; in vp9_iht8x8_64_add_dspr2() local 59 temp_in[i * 8 + j] = out[j * 8 + i]; in vp9_iht8x8_64_add_dspr2() 62 idct8_columns_add_blk_dspr2(&temp_in[0], dest, stride); in vp9_iht8x8_64_add_dspr2() 72 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i]; in vp9_iht8x8_64_add_dspr2() 74 iadst8_dspr2(temp_in, temp_out); in vp9_iht8x8_64_add_dspr2()
|
/external/libvpx/libvpx/test/ |
D | idct8x8_test.cc | 41 double temp_in[8], temp_out[8]; in reference_dct_2d() local 42 for (int j = 0; j < 8; ++j) temp_in[j] = input[j * 8 + i]; in reference_dct_2d() 43 reference_dct_1d(temp_in, temp_out); in reference_dct_2d() 48 double temp_in[8], temp_out[8]; in reference_dct_2d() local 49 for (int j = 0; j < 8; ++j) temp_in[j] = output[j + i * 8]; in reference_dct_2d() 50 reference_dct_1d(temp_in, temp_out); in reference_dct_2d()
|
D | dct32x32_test.cc | 53 double temp_in[32], temp_out[32]; in reference_32x32_dct_2d() local 54 for (int j = 0; j < 32; ++j) temp_in[j] = input[j * 32 + i]; in reference_32x32_dct_2d() 55 reference_32x32_dct_1d(temp_in, temp_out); in reference_32x32_dct_2d() 60 double temp_in[32], temp_out[32]; in reference_32x32_dct_2d() local 61 for (int j = 0; j < 32; ++j) temp_in[j] = output[j + i * 32]; in reference_32x32_dct_2d() 62 reference_32x32_dct_1d(temp_in, temp_out); in reference_32x32_dct_2d()
|
D | fdct8x8_test.cc | 66 double temp_in[8], temp_out[8]; in reference_8x8_dct_2d() local 67 for (int j = 0; j < 8; ++j) temp_in[j] = input[j * 8 + i]; in reference_8x8_dct_2d() 68 reference_8x8_dct_1d(temp_in, temp_out); in reference_8x8_dct_2d() 73 double temp_in[8], temp_out[8]; in reference_8x8_dct_2d() local 74 for (int j = 0; j < 8; ++j) temp_in[j] = output[j + i * 8]; in reference_8x8_dct_2d() 75 reference_8x8_dct_1d(temp_in, temp_out); in reference_8x8_dct_2d()
|
D | dct16x16_test.cc | 211 double temp_in[16], temp_out[16]; in reference_16x16_dct_2d() local 212 for (int j = 0; j < 16; ++j) temp_in[j] = input[j * 16 + i]; in reference_16x16_dct_2d() 213 butterfly_16x16_dct_1d(temp_in, temp_out); in reference_16x16_dct_2d() 218 double temp_in[16], temp_out[16]; in reference_16x16_dct_2d() local 219 for (int j = 0; j < 16; ++j) temp_in[j] = output[j + i * 16]; in reference_16x16_dct_2d() 220 butterfly_16x16_dct_1d(temp_in, temp_out); in reference_16x16_dct_2d()
|
/external/libaom/libaom/av1/common/ |
D | av1_inv_txfm2d.c | 284 int32_t *temp_in = txfm_buf; in inv_txfm2d_add_c() local 285 int32_t *temp_out = temp_in + buf_offset; in inv_txfm2d_add_c() 294 temp_in[c] = round_shift((int64_t)input[c] * NewInvSqrt2, NewSqrt2Bits); in inv_txfm2d_add_c() 296 clamp_buf(temp_in, txfm_size_col, bd + 8); in inv_txfm2d_add_c() 297 txfm_func_row(temp_in, buf_ptr, cos_bit_row, stage_range_row); in inv_txfm2d_add_c() 300 temp_in[c] = input[c]; in inv_txfm2d_add_c() 302 clamp_buf(temp_in, txfm_size_col, bd + 8); in inv_txfm2d_add_c() 303 txfm_func_row(temp_in, buf_ptr, cos_bit_row, stage_range_row); in inv_txfm2d_add_c() 314 temp_in[r] = buf[r * txfm_size_col + c]; in inv_txfm2d_add_c() 318 temp_in[r] = buf[r * txfm_size_col + (txfm_size_col - c - 1)]; in inv_txfm2d_add_c() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_dct.c | 537 tran_low_t temp_in[4], temp_out[4]; in vp9_fht4x4_c() local 542 for (j = 0; j < 4; ++j) temp_in[j] = input[j * stride + i] * 16; in vp9_fht4x4_c() 543 if (i == 0 && temp_in[0]) temp_in[0] += 1; in vp9_fht4x4_c() 544 ht.cols(temp_in, temp_out); in vp9_fht4x4_c() 550 for (j = 0; j < 4; ++j) temp_in[j] = out[j + i * 4]; in vp9_fht4x4_c() 551 ht.rows(temp_in, temp_out); in vp9_fht4x4_c() 667 tran_low_t temp_in[8], temp_out[8]; in vp9_fht8x8_c() local 672 for (j = 0; j < 8; ++j) temp_in[j] = input[j * stride + i] * 4; in vp9_fht8x8_c() 673 ht.cols(temp_in, temp_out); in vp9_fht8x8_c() 679 for (j = 0; j < 8; ++j) temp_in[j] = out[j + i * 8]; in vp9_fht8x8_c() [all …]
|
/external/libvpx/libvpx/vpx_dsp/ |
D | inv_txfm.c | 158 tran_low_t temp_in[4], temp_out[4]; in vpx_idct4x4_16_add_c() local 169 for (j = 0; j < 4; ++j) temp_in[j] = out[j * 4 + i]; in vpx_idct4x4_16_add_c() 170 idct4_c(temp_in, temp_out); in vpx_idct4x4_16_add_c() 330 tran_low_t temp_in[8], temp_out[8]; in vpx_idct8x8_64_add_c() local 341 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i]; in vpx_idct8x8_64_add_c() 342 idct8_c(temp_in, temp_out); in vpx_idct8x8_64_add_c() 354 tran_low_t temp_in[8], temp_out[8]; in vpx_idct8x8_12_add_c() local 366 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i]; in vpx_idct8x8_12_add_c() 367 idct8_c(temp_in, temp_out); in vpx_idct8x8_12_add_c() 727 tran_low_t temp_in[16], temp_out[16]; in vpx_idct16x16_256_add_c() local [all …]
|
D | fwd_txfm.c | 714 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_c() local 715 for (j = 0; j < 32; ++j) temp_in[j] = input[j * stride + i] * 4; in vpx_fdct32x32_c() 716 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_c() 723 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_c() local 724 for (j = 0; j < 32; ++j) temp_in[j] = out[j + i * 32]; in vpx_fdct32x32_c() 725 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_c() 741 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rd_c() local 742 for (j = 0; j < 32; ++j) temp_in[j] = input[j * stride + i] * 4; in vpx_fdct32x32_rd_c() 743 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_rd_c() 753 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rd_c() local [all …]
|
/external/libaom/libaom/test/ |
D | av1_txfm_test.cc | 240 double *const temp_in = new double[AOMMAX(tx_width, tx_height)]; in reference_hybrid_2d() local 248 temp_in[r] = in[r * stride + c]; in reference_hybrid_2d() 250 reference_hybrid_1d(temp_in, temp_out, tx_height, type0); in reference_hybrid_2d() 262 delete[] temp_in; in reference_hybrid_2d()
|
/external/libaom/libaom/av1/encoder/ |
D | av1_fwd_txfm2d.c | 83 int32_t *temp_in = output; in fwd_txfm2d_c() local 89 for (r = 0; r < txfm_size_row; ++r) temp_in[r] = input[r * stride + c]; in fwd_txfm2d_c() 93 temp_in[r] = input[(txfm_size_row - r - 1) * stride + c]; in fwd_txfm2d_c() 95 av1_round_shift_array(temp_in, txfm_size_row, -shift[0]); in fwd_txfm2d_c() 96 txfm_func_col(temp_in, temp_out, cos_bit_col, stage_range_col); in fwd_txfm2d_c()
|
/external/libaom/libaom/av1/common/arm/ |
D | av1_inv_txfm_neon.c | 3912 int32_t *temp_in = txfm_buf; in lowbd_inv_txfm2d_add_4x4_neon() local 3922 int32_t *temp_out = temp_in + buf_offset; in lowbd_inv_txfm2d_add_4x4_neon() 3945 temp_in[r] = buf[r * txfm_size_col + c]; in lowbd_inv_txfm2d_add_4x4_neon() 3949 temp_in[r] = buf[r * txfm_size_col + (txfm_size_col - c - 1)]; in lowbd_inv_txfm2d_add_4x4_neon() 3951 col_txfm(temp_in, temp_out, cos_bit_col, stage_range); in lowbd_inv_txfm2d_add_4x4_neon() 3974 int32_t *temp_in = txfm_buf; in lowbd_inv_txfm2d_add_4x8_neon() local 3984 int32_t *temp_out = temp_in + buf_offset; in lowbd_inv_txfm2d_add_4x8_neon() 3999 temp_in[j] = round_shift((int64_t)input[j] * NewInvSqrt2, NewSqrt2Bits); in lowbd_inv_txfm2d_add_4x8_neon() 4001 row_txfm(temp_in, buf_ptr, cos_bit_row, stage_range); in lowbd_inv_txfm2d_add_4x8_neon() 4009 temp_in[r] = buf[r * txfm_size_col + c]; in lowbd_inv_txfm2d_add_4x8_neon() [all …]
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | fwd_dct32x32_impl_sse2.h | 27 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rows_c() local 28 for (j = 0; j < 32; ++j) temp_in[j] = intermediate[j * 32 + i]; in vpx_fdct32x32_rows_c() 29 vpx_fdct32(temp_in, temp_out, 0); in vpx_fdct32x32_rows_c() 42 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rd_rows_c() local 43 for (j = 0; j < 32; ++j) temp_in[j] = intermediate[j * 32 + i]; in vpx_fdct32x32_rd_rows_c() 44 vpx_fdct32(temp_in, temp_out, 1); in vpx_fdct32x32_rd_rows_c()
|