/external/libvpx/config/x86_64/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 34 int64_t vp9_block_error_sse2(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_siz… 44 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 45 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 46 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 49 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 50 void vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type); 53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 54 void vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type); 57 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); [all …]
|
/external/libvpx/libvpx/vpx_dsp/ |
D | inv_txfm.h | 94 void idct4_c(const tran_low_t *input, tran_low_t *output); 95 void idct8_c(const tran_low_t *input, tran_low_t *output); 96 void idct16_c(const tran_low_t *input, tran_low_t *output); 97 void idct32_c(const tran_low_t *input, tran_low_t *output); 98 void iadst4_c(const tran_low_t *input, tran_low_t *output); 99 void iadst8_c(const tran_low_t *input, tran_low_t *output); 100 void iadst16_c(const tran_low_t *input, tran_low_t *output); 103 void vpx_highbd_idct4_c(const tran_low_t *input, tran_low_t *output, int bd); 104 void vpx_highbd_idct8_c(const tran_low_t *input, tran_low_t *output, int bd); 105 void vpx_highbd_idct16_c(const tran_low_t *input, tran_low_t *output, int bd); [all …]
|
D | quantize.h | 21 void vpx_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, 23 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, 25 void vpx_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block, 27 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, 31 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, 33 const int16_t quant_ptr, tran_low_t *qcoeff_ptr, 34 tran_low_t *dqcoeff_ptr, const int16_t dequant_ptr, 36 void vpx_highbd_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block, 39 tran_low_t *qcoeff_ptr, 40 tran_low_t *dqcoeff_ptr,
|
D | quantize.c | 15 void vpx_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, in vpx_quantize_dc() 17 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_dc() 39 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, in vpx_highbd_quantize_dc() 41 const int16_t quant, tran_low_t *qcoeff_ptr, in vpx_highbd_quantize_dc() 42 tran_low_t *dqcoeff_ptr, const int16_t dequant_ptr, in vpx_highbd_quantize_dc() 55 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vpx_highbd_quantize_dc() 63 void vpx_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block, in vpx_quantize_dc_32x32() 65 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_dc_32x32() 89 void vpx_highbd_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block, in vpx_highbd_quantize_dc_32x32() 91 tran_low_t *qcoeff_ptr, in vpx_highbd_quantize_dc_32x32() [all …]
|
D | fwd_txfm.c | 15 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) { in vpx_fdct4x4_c() 24 tran_low_t intermediate[4 * 4]; in vpx_fdct4x4_c() 25 const tran_low_t *in_low = NULL; in vpx_fdct4x4_c() 26 tran_low_t *out = intermediate; in vpx_fdct4x4_c() 58 out[0] = (tran_low_t)fdct_round_shift(temp1); in vpx_fdct4x4_c() 59 out[2] = (tran_low_t)fdct_round_shift(temp2); in vpx_fdct4x4_c() 62 out[1] = (tran_low_t)fdct_round_shift(temp1); in vpx_fdct4x4_c() 63 out[3] = (tran_low_t)fdct_round_shift(temp2); in vpx_fdct4x4_c() 81 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride) { in vpx_fdct4x4_1_c() 83 tran_low_t sum = 0; in vpx_fdct4x4_1_c() [all …]
|
D | inv_txfm.c | 18 void vpx_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride) { in vpx_iwht4x4_16_add_c() 22 tran_low_t output[16]; in vpx_iwht4x4_16_add_c() 24 const tran_low_t *ip = input; in vpx_iwht4x4_16_add_c() 25 tran_low_t *op = output; in vpx_iwht4x4_16_add_c() 70 void vpx_iwht4x4_1_add_c(const tran_low_t *in, uint8_t *dest, int stride) { in vpx_iwht4x4_1_add_c() 73 tran_low_t tmp[4]; in vpx_iwht4x4_1_add_c() 74 const tran_low_t *ip = in; in vpx_iwht4x4_1_add_c() 75 tran_low_t *op = tmp; in vpx_iwht4x4_1_add_c() 96 void iadst4_c(const tran_low_t *input, tran_low_t *output) { in iadst4_c() 98 tran_low_t x0 = input[0]; in iadst4_c() [all …]
|
/external/libvpx/config/x86/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 34 int64_t vp9_block_error_sse2(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_siz… 44 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 45 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 46 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 49 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 50 void vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type); 53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 54 void vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type); 57 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); [all …]
|
/external/libvpx/config/mips64-msa/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 34 int64_t vp9_block_error_msa(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size… 43 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 46 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 47 void vp9_fht16x16_msa(const int16_t *input, tran_low_t *output, int stride, int tx_type); 50 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 51 void vp9_fht4x4_msa(const int16_t *input, tran_low_t *output, int stride, int tx_type); 54 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 55 void vp9_fht8x8_msa(const int16_t *input, tran_low_t *output, int stride, int tx_type); 61 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride); [all …]
|
/external/libvpx/config/mips32-msa/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 34 int64_t vp9_block_error_msa(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size… 43 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 46 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 47 void vp9_fht16x16_msa(const int16_t *input, tran_low_t *output, int stride, int tx_type); 50 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 51 void vp9_fht4x4_msa(const int16_t *input, tran_low_t *output, int stride, int tx_type); 54 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 55 void vp9_fht8x8_msa(const int16_t *input, tran_low_t *output, int stride, int tx_type); 61 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride); [all …]
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_idct.h | 27 typedef void (*transform_1d)(const tran_low_t *, tran_low_t *); 34 typedef void (*highbd_transform_1d)(const tran_low_t *, tran_low_t *, int bd); 41 void vp9_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride, 43 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride, 45 void vp9_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride, 47 void vp9_idct16x16_add(const tran_low_t *input, uint8_t *dest, int stride, 49 void vp9_idct32x32_add(const tran_low_t *input, uint8_t *dest, int stride, 52 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, 54 void vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, 56 void vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, [all …]
|
D | vp9_idct.c | 20 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht4x4_16_add_c() 30 tran_low_t out[4 * 4]; in vp9_iht4x4_16_add_c() 31 tran_low_t *outptr = out; in vp9_iht4x4_16_add_c() 32 tran_low_t temp_in[4], temp_out[4]; in vp9_iht4x4_16_add_c() 59 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht8x8_64_add_c() 62 tran_low_t out[8 * 8]; in vp9_iht8x8_64_add_c() 63 tran_low_t *outptr = out; in vp9_iht8x8_64_add_c() 64 tran_low_t temp_in[8], temp_out[8]; in vp9_iht8x8_64_add_c() 92 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht16x16_256_add_c() 95 tran_low_t out[16 * 16]; in vp9_iht16x16_256_add_c() [all …]
|
/external/libvpx/config/arm-neon/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 43 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 44 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 47 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 50 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 53 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 59 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride); 62 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 65 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 66 void vp9_iht4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); [all …]
|
/external/libvpx/config/arm64/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 43 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 44 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 47 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 50 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 53 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 59 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride); 62 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 65 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 66 void vp9_iht4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_dct.c | 23 static void fdct4(const tran_low_t *input, tran_low_t *output) { in fdct4() 34 output[0] = (tran_low_t)fdct_round_shift(temp1); in fdct4() 35 output[2] = (tran_low_t)fdct_round_shift(temp2); in fdct4() 38 output[1] = (tran_low_t)fdct_round_shift(temp1); in fdct4() 39 output[3] = (tran_low_t)fdct_round_shift(temp2); in fdct4() 42 static void fdct8(const tran_low_t *input, tran_low_t *output) { in fdct8() 66 output[0] = (tran_low_t)fdct_round_shift(t0); in fdct8() 67 output[2] = (tran_low_t)fdct_round_shift(t2); in fdct8() 68 output[4] = (tran_low_t)fdct_round_shift(t1); in fdct8() 69 output[6] = (tran_low_t)fdct_round_shift(t3); in fdct8() [all …]
|
D | vp9_context_tree.h | 30 tran_low_t *coeff[MAX_MB_PLANE][3]; 31 tran_low_t *qcoeff[MAX_MB_PLANE][3]; 32 tran_low_t *dqcoeff[MAX_MB_PLANE][3]; 36 tran_low_t *coeff_pbuf[MAX_MB_PLANE][3]; 37 tran_low_t *qcoeff_pbuf[MAX_MB_PLANE][3]; 38 tran_low_t *dqcoeff_pbuf[MAX_MB_PLANE][3];
|
/external/libvpx/config/mips32-dspr2/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 42 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 45 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 48 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 51 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 57 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride); 60 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 61 void vp9_iht16x16_256_add_dspr2(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 64 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 65 void vp9_iht4x4_16_add_dspr2(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); [all …]
|
/external/libvpx/config/mips32/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 42 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 45 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 48 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 51 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 57 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride); 60 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 63 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 66 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 69 …nst tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… [all …]
|
/external/libvpx/config/generic/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 42 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 45 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 48 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 51 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 57 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride); 60 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 63 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 66 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 69 …nst tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… [all …]
|
/external/libvpx/config/mips64/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 42 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 45 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 48 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 51 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 57 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride); 60 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 63 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 66 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 69 …nst tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… [all …]
|
/external/libvpx/config/arm/ |
D | vp9_rtcd.h | 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, … 42 …de, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… 45 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 48 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 51 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 57 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride); 60 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 63 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 66 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 69 …nst tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int1… [all …]
|
/external/libvpx/libvpx/test/ |
D | hadamard_test.cc | 25 typedef void (*HadamardFunc)(const int16_t *a, int a_stride, tran_low_t *b); 50 void reference_hadamard8x8(const int16_t *a, int a_stride, tran_low_t *b) { in reference_hadamard8x8() 56 for (int i = 0; i < 64; ++i) b[i] = (tran_low_t)buf2[i]; in reference_hadamard8x8() 59 void reference_hadamard16x16(const int16_t *a, int a_stride, tran_low_t *b) { in reference_hadamard16x16() 70 const tran_low_t a0 = b[0]; in reference_hadamard16x16() 71 const tran_low_t a1 = b[64]; in reference_hadamard16x16() 72 const tran_low_t a2 = b[128]; in reference_hadamard16x16() 73 const tran_low_t a3 = b[192]; in reference_hadamard16x16() 76 const tran_low_t b0 = (a0 + a1) >> 1; in reference_hadamard16x16() 77 const tran_low_t b1 = (a0 - a1) >> 1; in reference_hadamard16x16() [all …]
|
D | fdct4x4_test.cc | 32 typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride); 33 typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride); 34 typedef void (*FhtFunc)(const int16_t *in, tran_low_t *out, int stride, 36 typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride, 42 void fdct4x4_ref(const int16_t *in, tran_low_t *out, int stride, in fdct4x4_ref() 47 void fht4x4_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { in fht4x4_ref() 51 void fwht4x4_ref(const int16_t *in, tran_low_t *out, int stride, in fwht4x4_ref() 57 void idct4x4_10(const tran_low_t *in, uint8_t *out, int stride) { in idct4x4_10() 61 void idct4x4_12(const tran_low_t *in, uint8_t *out, int stride) { in idct4x4_12() 65 void iht4x4_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht4x4_10() [all …]
|
D | vp9_quantize_test.cc | 34 typedef void (*QuantizeFunc)(const tran_low_t *coeff, intptr_t count, 37 const int16_t *quant_shift, tran_low_t *qcoeff, 38 tran_low_t *dqcoeff, const int16_t *dequant, 84 DECLARE_ALIGNED(16, tran_low_t, coeff_ptr[256]); in TEST_P() 89 DECLARE_ALIGNED(16, tran_low_t, qcoeff_ptr[256]); in TEST_P() 90 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[256]); in TEST_P() 91 DECLARE_ALIGNED(16, tran_low_t, ref_qcoeff_ptr[256]); in TEST_P() 92 DECLARE_ALIGNED(16, tran_low_t, ref_dqcoeff_ptr[256]); in TEST_P() 142 DECLARE_ALIGNED(16, tran_low_t, coeff_ptr[1024]); in TEST_P() 147 DECLARE_ALIGNED(16, tran_low_t, qcoeff_ptr[1024]); in TEST_P() [all …]
|
D | fdct8x8_test.cc | 39 typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride); 40 typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride); 41 typedef void (*FhtFunc)(const int16_t *in, tran_low_t *out, int stride, 43 typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride, 80 void fdct8x8_ref(const int16_t *in, tran_low_t *out, int stride, in fdct8x8_ref() 85 void fht8x8_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { in fht8x8_ref() 90 void idct8x8_10(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_10() 94 void idct8x8_12(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_12() 98 void iht8x8_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht8x8_10() 102 void iht8x8_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht8x8_12() [all …]
|
D | vp9_block_error_test.cc | 33 typedef int64_t (*HBDBlockErrorFunc)(const tran_low_t *coeff, 34 const tran_low_t *dqcoeff, 41 typedef int64_t (*BlockErrorFunc)(const tran_low_t *coeff, 42 const tran_low_t *dqcoeff, 46 int64_t BlockError8BitWrapper(const tran_low_t *coeff, in BlockError8BitWrapper() 47 const tran_low_t *dqcoeff, intptr_t block_size, in BlockError8BitWrapper() 72 DECLARE_ALIGNED(16, tran_low_t, coeff[4096]); in TEST_P() 73 DECLARE_ALIGNED(16, tran_low_t, dqcoeff[4096]); in TEST_P() 115 DECLARE_ALIGNED(16, tran_low_t, coeff[4096]); in TEST_P() 116 DECLARE_ALIGNED(16, tran_low_t, dqcoeff[4096]); in TEST_P()
|