/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() 32 iscan_ptr += n_coeffs; in vp9_quantize_fp_sse2() 33 qcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2() 34 dqcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2() 35 n_coeffs = -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() 80 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 81 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 | 183 int16_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_sse2() argument 451 iscan_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2() 452 qcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2() 453 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2() 454 n_coeffs = -n_coeffs; in vp9_fdct8x8_quant_sse2() 499 _mm_store_si128((__m128i *)(qcoeff_ptr + n_coeffs), qcoeff0); in vp9_fdct8x8_quant_sse2() 500 _mm_store_si128((__m128i *)(qcoeff_ptr + n_coeffs) + 1, qcoeff1); in vp9_fdct8x8_quant_sse2() 506 _mm_store_si128((__m128i *)(dqcoeff_ptr + n_coeffs), coeff0); in vp9_fdct8x8_quant_sse2() 507 _mm_store_si128((__m128i *)(dqcoeff_ptr + n_coeffs) + 1, coeff1); in vp9_fdct8x8_quant_sse2() 520 iscan0 = _mm_load_si128((const __m128i *)(iscan_ptr + n_coeffs)); in vp9_fdct8x8_quant_sse2() [all …]
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
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() 29 iscan_ptr += n_coeffs; in vpx_quantize_b_sse2() 30 qcoeff_ptr += n_coeffs; in vpx_quantize_b_sse2() 31 dqcoeff_ptr += n_coeffs; in vpx_quantize_b_sse2() 32 n_coeffs = -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() 95 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vpx_quantize_b_sse2() 96 store_tran_low(qcoeff1, qcoeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2() [all …]
|
D | highbd_quantize_intrin_sse2.c | 95 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_highbd_quantize_b_32x32_sse2() argument 116 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2() 117 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2() 121 for (i = 0; i < n_coeffs / 4; i++) { in vpx_highbd_quantize_b_32x32_sse2()
|
/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 25 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc() 26 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*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() argument 46 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_dc() 47 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_dc() 67 const int n_coeffs = 1024; in vpx_quantize_dc_32x32() local 74 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc_32x32() 75 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc_32x32() 95 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/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 …_sse2(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 46 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 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…
|
D | vpx_dsp_rtcd.h | 466 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t… 467 void vpx_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int1… 468 void vpx_quantize_b_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 471 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i… 472 void vpx_quantize_b_32x32_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, con…
|
/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 32 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_c() 33 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_c() 38 for (i = 0; i < n_coeffs; i++) { in vp9_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 101 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_32x32_c() 102 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_32x32_c() 105 for (i = 0; i < n_coeffs; i++) { 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 136 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_highbd_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/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 …_sse2(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 46 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 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/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, … 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/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, … 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/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/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 …
|
D | vpx_dsp_rtcd.h | 343 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t… 346 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i…
|
/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 …
|
D | vpx_dsp_rtcd.h | 343 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t… 346 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i…
|
/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 …
|
D | vpx_dsp_rtcd.h | 343 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t… 346 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i…
|
/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 …
|
/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… 77 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 80 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… 77 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 80 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|