/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() 43 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_highbd_quantize_dc() argument 48 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_dc() 57 dqcoeff_ptr[0] = qcoeff_ptr[0] * dequant_ptr; in vpx_highbd_quantize_dc() 67 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_dc_32x32() argument 77 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc_32x32() 84 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr / 2; in vpx_quantize_dc_32x32() 97 tran_low_t *dqcoeff_ptr, in vpx_highbd_quantize_dc_32x32() argument [all …]
|
D | quantize.h | 24 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, 28 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, 35 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, 42 tran_low_t *dqcoeff_ptr,
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_quantize_sse2.c | 21 int16_t* dqcoeff_ptr, const int16_t* dequant_ptr, in vp9_quantize_fp_sse2() argument 35 dqcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2() 88 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs), coeff0); in vp9_quantize_fp_sse2() 89 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs) + 1, coeff1); in vp9_quantize_fp_sse2() 156 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs), coeff0); in vp9_quantize_fp_sse2() 157 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs) + 1, coeff1); in vp9_quantize_fp_sse2() 162 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs), zero); in vp9_quantize_fp_sse2() 163 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs) + 1, zero); in vp9_quantize_fp_sse2() 203 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs), zero); in vp9_quantize_fp_sse2() 204 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs) + 1, zero); in vp9_quantize_fp_sse2()
|
D | vp9_dct_ssse3.c | 29 int16_t* dqcoeff_ptr, const int16_t* dequant_ptr, in vp9_fdct8x8_quant_ssse3() argument 293 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3() 347 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs), coeff0); in vp9_fdct8x8_quant_ssse3() 348 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs) + 1, coeff1); in vp9_fdct8x8_quant_ssse3() 416 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs), coeff0); in vp9_fdct8x8_quant_ssse3() 417 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs) + 1, coeff1); in vp9_fdct8x8_quant_ssse3() 422 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs), zero); in vp9_fdct8x8_quant_ssse3() 423 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs) + 1, zero); in vp9_fdct8x8_quant_ssse3() 464 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs), zero); in vp9_fdct8x8_quant_ssse3() 465 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs) + 1, zero); in vp9_fdct8x8_quant_ssse3()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_quantize_intrin_sse2.c | 26 tran_low_t *dqcoeff_ptr, in vpx_highbd_quantize_b_sse2() argument 49 memset(dqcoeff_ptr, 0, count * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_b_sse2() 93 dqcoeff_ptr[k] = qcoeff_ptr[k] * dequant_ptr[k != 0]; in vpx_highbd_quantize_b_sse2() 112 tran_low_t *dqcoeff_ptr, in vpx_highbd_quantize_b_32x32_sse2() argument 137 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2() 172 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2; in vpx_highbd_quantize_b_32x32_sse2()
|
D | quantize_sse2.c | 46 tran_low_t* dqcoeff_ptr, const int16_t* dequant_ptr, in vpx_quantize_b_sse2() argument 56 dqcoeff_ptr += n_coeffs; in vpx_quantize_b_sse2() 127 store_coefficients(coeff0, dqcoeff_ptr + n_coeffs); in vpx_quantize_b_sse2() 128 store_coefficients(coeff1, dqcoeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2() 200 store_coefficients(coeff0, dqcoeff_ptr + n_coeffs); in vpx_quantize_b_sse2() 201 store_coefficients(coeff1, dqcoeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2() 240 store_coefficients(zero, dqcoeff_ptr + n_coeffs); in vpx_quantize_b_sse2() 241 store_coefficients(zero, dqcoeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_quantize.c | 27 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vp9_quantize_fp_c() argument 39 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_c() 54 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0]; in vp9_quantize_fp_c() 72 tran_low_t *dqcoeff_ptr, in vp9_highbd_quantize_fp_c() argument 86 memset(dqcoeff_ptr, 0, count * sizeof(*dqcoeff_ptr)); in vp9_highbd_quantize_fp_c() 99 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0]; in vp9_highbd_quantize_fp_c() 115 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vp9_quantize_fp_32x32_c() argument 125 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_32x32_c() 140 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2; in vp9_quantize_fp_32x32_c() 158 tran_low_t *dqcoeff_ptr, in vp9_highbd_quantize_fp_32x32_c() argument [all …]
|
/external/libvpx/libvpx/test/ |
D | vp9_quantize_test.cc | 91 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[256]); in TEST_P() 125 dqcoeff_ptr, dequant_ptr, eob_ptr, in TEST_P() 129 (ref_dqcoeff_ptr[j] != dqcoeff_ptr[j]); in TEST_P() 150 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[1024]); in TEST_P() 184 dqcoeff_ptr, dequant_ptr, eob_ptr, in TEST_P() 188 (ref_dqcoeff_ptr[j] != dqcoeff_ptr[j]); in TEST_P() 209 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[256]); in TEST_P() 247 dqcoeff_ptr, dequant_ptr, eob_ptr, in TEST_P() 252 (ref_dqcoeff_ptr[j] != dqcoeff_ptr[j]); in TEST_P() 273 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[1024]); in TEST_P() [all …]
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_rtcd_defs.pl | 253 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 256 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 259 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 268 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 271 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 274 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 327 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 330 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/x86_64/ |
D | vp9_rtcd.h | 51 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 52 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 53 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 112 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 113 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 114 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 117 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 118 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/libvpx/vp8/encoder/x86/ |
D | vp8_enc_stubs_mmx.c | 27 short *quant_ptr, short *dqcoeff_ptr); 36 short *dqcoeff_ptr = d->dqcoeff; in vp8_fast_quantize_b_mmx() local 48 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 | 28 int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, in vp9_quantize_fp_neon() argument 71 vst1q_s16(&dqcoeff_ptr[0], v_dqcoeff); in vp9_quantize_fp_neon() 96 vst1q_s16(&dqcoeff_ptr[i], v_dqcoeff); in vp9_quantize_fp_neon() 115 memset(dqcoeff_ptr, 0, count * sizeof(int16_t)); in vp9_quantize_fp_neon()
|
D | vp9_dct_neon.c | 25 int16_t* qcoeff_ptr, int16_t* dqcoeff_ptr, in vp9_fdct8x8_quant_neon() argument 34 quant_ptr, quant_shift_ptr, qcoeff_ptr, dqcoeff_ptr, in vp9_fdct8x8_quant_neon()
|
/external/libvpx/config/arm64/ |
D | vp9_rtcd.h | 49 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 50 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 99 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 100 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 103 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/arm-neon/ |
D | vp9_rtcd.h | 49 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 50 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 99 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 100 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 103 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/x86/ |
D | vp9_rtcd.h | 51 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 52 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 53 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 111 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 112 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 115 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/mips32/ |
D | vp9_rtcd.h | 47 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 92 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 95 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/generic/ |
D | vp9_rtcd.h | 47 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 92 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 95 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/mips64/ |
D | vp9_rtcd.h | 47 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 92 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 95 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/arm/ |
D | vp9_rtcd.h | 47 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 92 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 95 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t …
|
/external/libvpx/config/mips32-dspr2/ |
D | vp9_rtcd.h | 47 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 95 …r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t … 98 …r, const int16_t *quant_shift_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 | 221 int16_t *dqcoeff_ptr = d->dqcoeff; in vp8_fast_quantize_b_msa() local 225 dequant_ptr, qcoeff_ptr, dqcoeff_ptr); in vp8_fast_quantize_b_msa() 237 int16_t *dqcoeff_ptr = d->dqcoeff; in vp8_regular_quantize_b_msa() local 245 qcoeff_ptr, dqcoeff_ptr); in vp8_regular_quantize_b_msa()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | vp8_quantize.c | 27 short *dqcoeff_ptr = d->dqcoeff; in vp8_fast_quantize_b_c() local 42 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */ in vp8_fast_quantize_b_c() 64 short *dqcoeff_ptr = d->dqcoeff; in vp8_regular_quantize_b_c() local 69 memset(dqcoeff_ptr, 0, 32); in vp8_regular_quantize_b_c() 91 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */ in vp8_regular_quantize_b_c()
|
D | encodemb.c | 186 short *dqcoeff_ptr; in optimize_b() local 216 dqcoeff_ptr = d->dqcoeff; in optimize_b() 273 dx = dqcoeff_ptr[rc] - coeff_ptr[rc]; in optimize_b() 404 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; in optimize_b()
|