/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_quantize_sse2.c | 20 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_sse2() argument 36 coeff_ptr += n_coeffs; in vp9_quantize_fp_sse2() 37 iscan_ptr += n_coeffs; in vp9_quantize_fp_sse2() 38 qcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2() 39 dqcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2() 40 n_coeffs = -n_coeffs; in vp9_quantize_fp_sse2() 58 coeff0 = load_tran_low(coeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 59 coeff1 = load_tran_low(coeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2() 82 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 83 store_tran_low(qcoeff1, qcoeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2() [all …]
|
D | vp9_dct_ssse3.c | 22 const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_ssse3() argument 283 iscan_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3() 284 qcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3() 285 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3() 286 n_coeffs = -n_coeffs; in vp9_fdct8x8_quant_ssse3() 332 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vp9_fdct8x8_quant_ssse3() 333 store_tran_low(qcoeff1, qcoeff_ptr + n_coeffs + 8); 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() 353 iscan0 = _mm_load_si128((const __m128i *)(iscan_ptr + n_coeffs)); in vp9_fdct8x8_quant_ssse3() [all …]
|
D | vp9_dct_intrin_sse2.c | 184 int16_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_sse2() argument 452 iscan_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2() 453 qcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2() 454 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2() 455 n_coeffs = -n_coeffs; in vp9_fdct8x8_quant_sse2() 500 _mm_store_si128((__m128i *)(qcoeff_ptr + n_coeffs), qcoeff0); in vp9_fdct8x8_quant_sse2() 501 _mm_store_si128((__m128i *)(qcoeff_ptr + n_coeffs) + 1, qcoeff1); in vp9_fdct8x8_quant_sse2() 507 _mm_store_si128((__m128i *)(dqcoeff_ptr + n_coeffs), coeff0); in vp9_fdct8x8_quant_sse2() 508 _mm_store_si128((__m128i *)(dqcoeff_ptr + n_coeffs) + 1, coeff1); in vp9_fdct8x8_quant_sse2() 521 iscan0 = _mm_load_si128((const __m128i *)(iscan_ptr + n_coeffs)); in vp9_fdct8x8_quant_sse2() [all …]
|
/external/libvpx/libvpx/vpx_dsp/ |
D | quantize.c | 17 void vpx_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, in vpx_quantize_dc() argument 27 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc() 28 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc() 41 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, in vpx_highbd_quantize_dc() argument 48 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_dc() 49 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_dc() 69 const int n_coeffs = 1024; in vpx_quantize_dc_32x32() local 76 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc_32x32() 77 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc_32x32() 97 const int n_coeffs = 1024; in vpx_highbd_quantize_dc_32x32() local [all …]
|
D | quantize.h | 21 void vpx_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, 31 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs,
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_quantize.c | 24 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_c() argument 35 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_c() 36 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_c() 40 for (i = 0; i < n_coeffs; i++) { in vp9_quantize_fp_c() 58 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_highbd_quantize_fp_c() argument 71 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_highbd_quantize_fp_c() 72 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_highbd_quantize_fp_c() 76 for (i = 0; i < n_coeffs; i++) { in vp9_highbd_quantize_fp_c() 93 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_32x32_c() argument 104 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_32x32_c() [all …]
|
D | vp9_dct.c | 558 tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_c() argument 636 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_fdct8x8_quant_c() 637 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_fdct8x8_quant_c() 642 for (i = 0; i < n_coeffs; i++) { in vp9_fdct8x8_quant_c()
|
/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 …_neon(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 83 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 86 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 101 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 102 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 105 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const … 106 void vp9_quantize_fp_32x32_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, con…
|
/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 …_neon(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 83 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 86 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 101 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 102 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 105 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const … 106 void vp9_quantize_fp_32x32_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, con…
|
/external/libvpx/config/x86_64/ |
D | vp9_rtcd.h | 45 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 46 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 90 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 93 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 111 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 112 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 113 void vp9_quantize_fp_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const in… 116 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const … 117 void vp9_quantize_fp_32x32_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, co…
|
/external/libvpx/config/x86/ |
D | vp9_rtcd.h | 45 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 46 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 90 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 93 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 111 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 112 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 115 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/config/mips64-msa/ |
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… 82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 103 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/config/mips32-msa/ |
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… 82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 103 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 | 43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 103 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 | 43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 103 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/config/generic/ |
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… 82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 103 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 | 43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 103 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 | 43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs… 82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 103 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | quantize_neon.c | 18 void vpx_quantize_b_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_neon() argument 82 n_coeffs -= 8; in vpx_quantize_b_neon() 134 n_coeffs -= 8; in vpx_quantize_b_neon() 135 } while (n_coeffs > 0); in vpx_quantize_b_neon() 154 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_quantize_b_32x32_neon() argument 164 (void)n_coeffs; // Because we will always calculate 32*32. in vpx_quantize_b_32x32_neon()
|
/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 32 vp9_quantize_fp_neon(temp_buffer, n_coeffs, skip_block, round_ptr, quant_ptr, in vp9_fdct8x8_quant_neon()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_quantize_intrin_sse2.c | 96 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_highbd_quantize_b_32x32_sse2() argument 120 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2() 121 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2() 124 for (i = 0; i < n_coeffs / 4; i++) { in vpx_highbd_quantize_b_32x32_sse2()
|
D | quantize_avx.c | 22 void vpx_quantize_b_avx(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_avx() argument 69 if (n_coeffs == 16) return; in vpx_quantize_b_avx() 105 for (index = 16; index < n_coeffs; index += 16) { in vpx_quantize_b_avx() 153 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_quantize_b_32x32_avx() argument 171 (void)n_coeffs; in vpx_quantize_b_32x32_avx()
|
D | quantize_ssse3.c | 19 void vpx_quantize_b_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_ssse3() argument 81 while (index < n_coeffs) { in vpx_quantize_b_ssse3() 120 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_quantize_b_32x32_ssse3() argument 137 (void)n_coeffs; in vpx_quantize_b_32x32_ssse3()
|
D | quantize_sse2.c | 20 void vpx_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_sse2() argument 88 while (index < n_coeffs) { in vpx_quantize_b_sse2()
|
/external/libvpx/libvpx/test/ |
D | vp9_quantize_test.cc | 138 void quantize_fp_nz_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in quantize_fp_nz_c() argument 152 for (i = 0; i < n_coeffs; i += 16) { in quantize_fp_nz_c() 188 for (i = 0; i < n_coeffs; i++) { in quantize_fp_nz_c()
|