/external/libvpx/libvpx/vpx_dsp/ |
D | quantize.c | 17 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_dc() argument 26 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc() 32 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr; in vpx_quantize_dc() 42 tran_low_t *dqcoeff_ptr, const int16_t dequant_ptr, in vpx_highbd_quantize_dc() argument 47 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_dc() 56 dqcoeff_ptr[0] = qcoeff_ptr[0] * dequant_ptr; in vpx_highbd_quantize_dc() 65 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_dc_32x32() argument 75 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc_32x32() 82 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr / 2; in vpx_quantize_dc_32x32() 92 tran_low_t *dqcoeff_ptr, in vpx_highbd_quantize_dc_32x32() argument [all …]
|
D | quantize.h | 23 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, 27 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, 34 tran_low_t *dqcoeff_ptr, const int16_t dequant_ptr, 40 tran_low_t *dqcoeff_ptr,
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_rtcd_defs.pl | 137 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 140 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 143 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 152 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 155 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 158 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 208 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 210 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_quantize.c | 26 tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, in vp9_quantize_fp_c() argument 33 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_c() 48 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0]; in vp9_quantize_fp_c() 60 tran_low_t *dqcoeff_ptr, in vp9_highbd_quantize_fp_c() argument 69 memset(dqcoeff_ptr, 0, count * sizeof(*dqcoeff_ptr)); in vp9_highbd_quantize_fp_c() 82 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0]; in vp9_highbd_quantize_fp_c() 95 tran_low_t *dqcoeff_ptr, in vp9_quantize_fp_32x32_c() argument 102 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_32x32_c() 117 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2; in vp9_quantize_fp_32x32_c() 130 tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, in vp9_highbd_quantize_fp_32x32_c() argument [all …]
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_quantize_sse2.c | 22 tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, in vp9_quantize_fp_sse2() argument 34 dqcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2() 87 store_tran_low(coeff0, dqcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 88 store_tran_low(coeff1, dqcoeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2() 155 store_tran_low(coeff0, dqcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 156 store_tran_low(coeff1, dqcoeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2() 161 store_zero_tran_low(dqcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 162 store_zero_tran_low(dqcoeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2() 205 store_zero_tran_low(dqcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 206 store_zero_tran_low(dqcoeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2()
|
D | vp9_dct_ssse3.c | 24 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, in vp9_fdct8x8_quant_ssse3() argument 285 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3() 339 store_tran_low(coeff0, dqcoeff_ptr + n_coeffs); in vp9_fdct8x8_quant_ssse3() 340 store_tran_low(coeff1, dqcoeff_ptr + n_coeffs + 8); in vp9_fdct8x8_quant_ssse3() 408 store_tran_low(coeff0, dqcoeff_ptr + n_coeffs); in vp9_fdct8x8_quant_ssse3() 409 store_tran_low(coeff1, dqcoeff_ptr + n_coeffs + 8); in vp9_fdct8x8_quant_ssse3() 415 store_zero_tran_low(dqcoeff_ptr + n_coeffs); in vp9_fdct8x8_quant_ssse3() 416 store_zero_tran_low(dqcoeff_ptr + n_coeffs + 8); in vp9_fdct8x8_quant_ssse3() 457 store_zero_tran_low(dqcoeff_ptr + n_coeffs); in vp9_fdct8x8_quant_ssse3() 458 store_zero_tran_low(dqcoeff_ptr + n_coeffs + 8); in vp9_fdct8x8_quant_ssse3()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_quantize_intrin_sse2.c | 23 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_highbd_quantize_b_sse2() argument 42 memset(dqcoeff_ptr, 0, count * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_b_sse2() 85 dqcoeff_ptr[k] = qcoeff_ptr[k] * dequant_ptr[k != 0]; in vpx_highbd_quantize_b_sse2() 98 tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, in vpx_highbd_quantize_b_32x32_sse2() argument 117 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2() 148 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2; in vpx_highbd_quantize_b_32x32_sse2()
|
D | quantize_sse2.c | 22 tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, in vpx_quantize_b_sse2() argument 31 dqcoeff_ptr += n_coeffs; in vpx_quantize_b_sse2() 102 store_tran_low(coeff0, dqcoeff_ptr + n_coeffs); in vpx_quantize_b_sse2() 103 store_tran_low(coeff1, dqcoeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2() 175 store_tran_low(coeff0, dqcoeff_ptr + n_coeffs); in vpx_quantize_b_sse2() 176 store_tran_low(coeff1, dqcoeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2() 215 store_tran_low(zero, dqcoeff_ptr + n_coeffs); in vpx_quantize_b_sse2() 216 store_tran_low(zero, dqcoeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2()
|
/external/libvpx/config/x86_64/ |
D | vp9_rtcd.h | 44 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 45 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 46 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 81 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 82 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 83 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 86 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 87 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/libvpx/test/ |
D | vp9_quantize_test.cc | 90 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[256]); in TEST_P() 123 quant_shift_ptr, qcoeff_ptr, dqcoeff_ptr, dequant_ptr, eob_ptr, in TEST_P() 127 (ref_dqcoeff_ptr[j] != dqcoeff_ptr[j]); in TEST_P() 148 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[1024]); in TEST_P() 181 quant_shift_ptr, qcoeff_ptr, dqcoeff_ptr, dequant_ptr, eob_ptr, in TEST_P() 185 (ref_dqcoeff_ptr[j] != dqcoeff_ptr[j]); in TEST_P() 206 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[256]); in TEST_P() 243 quant_shift_ptr, qcoeff_ptr, dqcoeff_ptr, dequant_ptr, eob_ptr, in TEST_P() 248 (ref_dqcoeff_ptr[j] != dqcoeff_ptr[j]); in TEST_P() 269 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[1024]); in TEST_P() [all …]
|
/external/libvpx/libvpx/vp8/encoder/x86/ |
D | vp8_enc_stubs_mmx.c | 19 short *quant_ptr, short *dqcoeff_ptr); 27 short *dqcoeff_ptr = d->dqcoeff; in vp8_fast_quantize_b_mmx() local 33 round_ptr, quant_ptr, dqcoeff_ptr); in vp8_fast_quantize_b_mmx()
|
D | quantize_mmx.asm | 17 ; short *quant_ptr, short *dqcoeff_ptr); 67 mov rax, arg(7) ;dqcoeff_ptr 107 mov rax, arg(7) ;dqcoeff_ptr 148 mov rax, arg(7) ;dqcoeff_ptr 189 mov rax, arg(7) ;dqcoeff_ptr
|
/external/libvpx/libvpx/vp9/encoder/arm/neon/ |
D | vp9_quantize_neon.c | 31 tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, in vp9_quantize_fp_neon() argument 70 store_s16q_to_tran_low(dqcoeff_ptr, v_dqcoeff); in vp9_quantize_fp_neon() 95 store_s16q_to_tran_low(dqcoeff_ptr + i, v_dqcoeff); in vp9_quantize_fp_neon() 113 memset(dqcoeff_ptr, 0, count * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_neon()
|
D | vp9_dct_neon.c | 25 tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, in vp9_fdct8x8_quant_neon() argument 33 qcoeff_ptr, dqcoeff_ptr, dequant_ptr, eob_ptr, scan_ptr, in vp9_fdct8x8_quant_neon()
|
/external/libvpx/config/x86/ |
D | vp9_rtcd.h | 44 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 45 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 46 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 81 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 82 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 85 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/arm64/ |
D | vp9_rtcd.h | 43 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 44 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 73 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 74 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 77 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/arm-neon/ |
D | vp9_rtcd.h | 43 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 44 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 73 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 74 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 77 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/generic/ |
D | vp9_rtcd.h | 42 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 69 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 72 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/mips64/ |
D | vp9_rtcd.h | 42 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 69 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 72 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/mips32/ |
D | vp9_rtcd.h | 42 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 69 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 72 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/arm/ |
D | vp9_rtcd.h | 42 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 69 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 72 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/mips32-dspr2/ |
D | vp9_rtcd.h | 42 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 72 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 75 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/mips32-msa/ |
D | vp9_rtcd.h | 43 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 77 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 80 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/mips64-msa/ |
D | vp9_rtcd.h | 43 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 77 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 80 …und_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/libvpx/vp8/encoder/mips/msa/ |
D | quantize_msa.c | 189 int16_t *dqcoeff_ptr = d->dqcoeff; in vp8_fast_quantize_b_msa() local 193 qcoeff_ptr, dqcoeff_ptr); in vp8_fast_quantize_b_msa() 204 int16_t *dqcoeff_ptr = d->dqcoeff; in vp8_regular_quantize_b_msa() local 210 quant_shift_ptr, dequant_ptr, zbin_oq_value, qcoeff_ptr, dqcoeff_ptr); in vp8_regular_quantize_b_msa()
|