/external/libvpx/libvpx/vp8/encoder/mips/msa/ |
D | encodeopt_msa.c | 15 int32_t vp8_block_error_msa(int16_t *coeff_ptr, int16_t *dq_coeff_ptr) { in vp8_block_error_msa() argument 24 coeff = LD_SH(coeff_ptr); in vp8_block_error_msa() 29 coeff_ptr += 8; in vp8_block_error_msa() 44 int16_t *coeff_ptr, *dq_coeff_ptr; in vp8_mbblock_error_msa() local 61 coeff_ptr = be->coeff; in vp8_mbblock_error_msa() 63 coeff = LD_SH(coeff_ptr); in vp8_mbblock_error_msa() 65 coeff_ptr += 8; in vp8_mbblock_error_msa() 67 coeff2 = LD_SH(coeff_ptr); in vp8_mbblock_error_msa() 71 coeff_ptr = be->coeff; in vp8_mbblock_error_msa() 73 coeff3 = LD_SH(coeff_ptr); in vp8_mbblock_error_msa() [all …]
|
D | quantize_msa.c | 15 static int8_t fast_quantize_b_msa(int16_t *coeff_ptr, int16_t *round, in fast_quantize_b_msa() argument 35 LD_SH2(coeff_ptr, 8, coeff0, coeff1); in fast_quantize_b_msa() 82 int16_t *zbin_boost, int16_t *coeff_ptr, int16_t *zbin, int16_t *round, in exact_regular_quantize_b_msa() argument 105 LD_SH2(coeff_ptr, 8, coeff0, coeff1); in exact_regular_quantize_b_msa() 185 int16_t *coeff_ptr = b->coeff; in vp8_fast_quantize_b_msa() local 192 *d->eob = fast_quantize_b_msa(coeff_ptr, round_ptr, quant_ptr, dequant_ptr, in vp8_fast_quantize_b_msa() 198 int16_t *coeff_ptr = b->coeff; in vp8_regular_quantize_b_msa() local 209 zbin_boost_ptr, coeff_ptr, zbin_ptr, round_ptr, quant_ptr, in vp8_regular_quantize_b_msa()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | quantize.c | 15 void vpx_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, in vpx_quantize_dc() argument 20 const int coeff = coeff_ptr[rc]; in vpx_quantize_dc() 39 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, in vpx_highbd_quantize_dc() argument 50 const int coeff = coeff_ptr[0]; 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() argument 69 const int coeff = coeff_ptr[rc]; 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() argument 102 const int coeff = coeff_ptr[0]; in vpx_highbd_quantize_dc_32x32() 115 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_c() argument 134 const int coeff = coeff_ptr[rc]; in vpx_quantize_b_c() [all …]
|
D | quantize.h | 21 void vpx_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, 25 void vpx_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block, 31 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, 36 void vpx_highbd_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block,
|
/external/libvpx/libvpx/vp9/encoder/mips/msa/ |
D | vp9_error_msa.c | 16 const int16_t *coeff_ptr, const int16_t *dq_coeff_ptr, int64_t *ssz) { \ 24 coeff = LD_SH(coeff_ptr); \ 33 coeff = LD_SH(coeff_ptr + 8); \ 41 coeff_ptr += 16; \ 45 coeff = LD_SH(coeff_ptr); \ 53 coeff = LD_SH(coeff_ptr + 8); \ 61 coeff_ptr += 16; \ 87 int64_t vp9_block_error_msa(const tran_low_t *coeff_ptr, in vp9_block_error_msa() argument 91 const int16_t *coeff = (const int16_t *)coeff_ptr; in vp9_block_error_msa() 100 err = vp9_block_error_c(coeff_ptr, dq_coeff_ptr, blk_size, ssz); in vp9_block_error_msa()
|
/external/libvpx/libvpx/test/ |
D | vp9_quantize_test.cc | 84 DECLARE_ALIGNED(16, tran_low_t, coeff_ptr[256]); in TEST_P() 108 coeff_ptr[j] = rnd.Rand16() & mask_; in TEST_P() 117 ref_quantize_op_(coeff_ptr, count, skip_block, zbin_ptr, round_ptr, in TEST_P() 122 coeff_ptr, count, skip_block, zbin_ptr, round_ptr, quant_ptr, in TEST_P() 142 DECLARE_ALIGNED(16, tran_low_t, coeff_ptr[1024]); in TEST_P() 166 coeff_ptr[j] = rnd.Rand16() & mask_; in TEST_P() 175 ref_quantize_op_(coeff_ptr, count, skip_block, zbin_ptr, round_ptr, in TEST_P() 180 coeff_ptr, count, skip_block, zbin_ptr, round_ptr, quant_ptr, in TEST_P() 200 DECLARE_ALIGNED(16, tran_low_t, coeff_ptr[256]); in TEST_P() 225 coeff_ptr[j] = 0; in TEST_P() [all …]
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_rtcd_defs.pl | 137 …add_proto qw/void vp9_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_bloc… 140 …add_proto qw/void vp9_quantize_fp_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int ski… 143 …add_proto qw/void vp9_fdct8x8_quant/, "const int16_t *input, int stride, tran_low_t *coeff_ptr, in… 152 …add_proto qw/void vp9_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_bloc… 155 …add_proto qw/void vp9_quantize_fp_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int ski… 158 …add_proto qw/void vp9_fdct8x8_quant/, "const int16_t *input, int stride, tran_low_t *coeff_ptr, in… 208 …add_proto qw/void vp9_highbd_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int sk… 210 …add_proto qw/void vp9_highbd_quantize_fp_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, …
|
/external/libvpx/config/x86_64/ |
D | vp9_rtcd.h | 44 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 45 void vp9_fdct8x8_quant_sse2(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coe… 46 void vp9_fdct8x8_quant_ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_co… 81 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 82 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 83 void vp9_quantize_fp_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const in… 86 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const … 87 void vp9_quantize_fp_32x32_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, co…
|
/external/libvpx/libvpx/vp8/encoder/x86/ |
D | vp8_enc_stubs_sse2.c | 16 int vp8_mbblock_error_sse2_impl(short *coeff_ptr, short *dcoef_ptr, int dc); 18 short *coeff_ptr = mb->block[0].coeff; in vp8_mbblock_error_sse2() local 20 return vp8_mbblock_error_sse2_impl(coeff_ptr, dcoef_ptr, dc); in vp8_mbblock_error_sse2()
|
D | vp8_enc_stubs_mmx.c | 16 int vp8_fast_quantize_b_impl_mmx(short *coeff_ptr, short *zbin_ptr, 22 short *coeff_ptr = b->coeff; in vp8_fast_quantize_b_mmx() local 31 coeff_ptr, zbin_ptr, qcoeff_ptr, dequant_ptr, scan_mask, in vp8_fast_quantize_b_mmx()
|
D | encodeopt.asm | 14 ;int vp8_block_error_sse2(short *coeff_ptr, short *dcoef_ptr) 24 mov rsi, arg(0) ;coeff_ptr 62 ;int vp8_mbblock_error_sse2_impl(short *coeff_ptr, short *dcoef_ptr, int dc); 74 mov rsi, arg(0) ;coeff_ptr
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_quantize_intrin_sse2.c | 18 void vpx_highbd_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t count, in vpx_highbd_quantize_b_sse2() argument 49 coeffs = _mm_load_si128((const __m128i *)(coeff_ptr + i * 4)); in vpx_highbd_quantize_b_sse2() 67 coeffs = _mm_load_si128((const __m128i *)(coeff_ptr + i * 4)); in vpx_highbd_quantize_b_sse2() 95 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_highbd_quantize_b_32x32_sse2() argument 124 coeffs = _mm_load_si128((const __m128i *)(coeff_ptr + i * 4)); in vpx_highbd_quantize_b_32x32_sse2() 139 const int coeff = coeff_ptr[rc]; in vpx_highbd_quantize_b_32x32_sse2()
|
D | quantize_sse2.c | 18 void vpx_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_sse2() argument 28 coeff_ptr += n_coeffs; in vpx_quantize_b_sse2() 59 coeff0 = load_tran_low(coeff_ptr + n_coeffs); in vpx_quantize_b_sse2() 60 coeff1 = load_tran_low(coeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2() 137 coeff0 = load_tran_low(coeff_ptr + n_coeffs); in vpx_quantize_b_sse2() 138 coeff1 = load_tran_low(coeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2()
|
/external/libvpx/config/x86/ |
D | vp9_rtcd.h | 44 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 45 void vp9_fdct8x8_quant_sse2(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coe… 46 void vp9_fdct8x8_quant_ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_co… 81 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 82 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 85 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/config/arm64/ |
D | vp9_rtcd.h | 43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 44 void vp9_fdct8x8_quant_neon(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coe… 73 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 74 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 77 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/config/arm-neon/ |
D | vp9_rtcd.h | 43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 44 void vp9_fdct8x8_quant_neon(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coe… 73 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 74 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 77 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_quantize_sse2.c | 19 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_sse2() argument 31 coeff_ptr += n_coeffs; in vp9_quantize_fp_sse2() 56 coeff0 = load_tran_low(coeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 57 coeff1 = load_tran_low(coeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2() 123 coeff0 = load_tran_low(coeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 124 coeff1 = load_tran_low(coeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_quantize.c | 23 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_c() argument 40 const int coeff = coeff_ptr[rc]; in vp9_quantize_fp_c() 57 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t count, in vp9_highbd_quantize_fp_c() argument 76 const int coeff = coeff_ptr[rc]; in vp9_highbd_quantize_fp_c() 92 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_32x32_c() argument 107 const int coeff = coeff_ptr[rc]; in vp9_quantize_fp_32x32_c() 128 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vp9_highbd_quantize_fp_32x32_c() argument 143 const int coeff = coeff_ptr[rc]; in vp9_highbd_quantize_fp_32x32_c()
|
/external/libvpx/libvpx/vp9/encoder/arm/neon/ |
D | vp9_dct_neon.c | 22 tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_neon() argument 29 (void)coeff_ptr; in vp9_fdct8x8_quant_neon()
|
D | vp9_quantize_neon.c | 28 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t count, in vp9_quantize_fp_neon() argument 53 const int16x8_t v_coeff = load_tran_low_to_s16q(coeff_ptr); in vp9_quantize_fp_neon() 78 const int16x8_t v_coeff = load_tran_low_to_s16q(coeff_ptr + i); in vp9_quantize_fp_neon()
|
/external/libvpx/config/generic/ |
D | vp9_rtcd.h | 42 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 69 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 72 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/config/mips64/ |
D | vp9_rtcd.h | 42 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 69 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 72 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/config/mips32/ |
D | vp9_rtcd.h | 42 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 69 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 72 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/config/arm/ |
D | vp9_rtcd.h | 42 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 69 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 72 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/config/mips32-dspr2/ |
D | vp9_rtcd.h | 42 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 72 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 75 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|