/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 += 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_quantize_avx2.c | 49 void vp9_quantize_fp_avx2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_avx2() argument 63 coeff_ptr += n_coeffs; in vp9_quantize_fp_avx2() 64 iscan += n_coeffs; in vp9_quantize_fp_avx2() 65 qcoeff_ptr += n_coeffs; in vp9_quantize_fp_avx2() 66 dqcoeff_ptr += n_coeffs; in vp9_quantize_fp_avx2() 67 n_coeffs = -n_coeffs; in vp9_quantize_fp_avx2() 90 coeff256 = load_tran_low(coeff_ptr + n_coeffs); in vp9_quantize_fp_avx2() 95 store_tran_low(qcoeff256, qcoeff_ptr + n_coeffs); in vp9_quantize_fp_avx2() 97 store_tran_low(coeff256, dqcoeff_ptr + n_coeffs); in vp9_quantize_fp_avx2() 100 eob256 = scan_eob_256((const __m256i *)(iscan + n_coeffs), &coeff256); in vp9_quantize_fp_avx2() [all …]
|
D | vp9_dct_ssse3.c | 22 tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_ssse3() argument 285 iscan += n_coeffs; in vp9_fdct8x8_quant_ssse3() 286 qcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3() 287 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3() 288 n_coeffs = -n_coeffs; in vp9_fdct8x8_quant_ssse3() 334 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vp9_fdct8x8_quant_ssse3() 335 store_tran_low(qcoeff1, qcoeff_ptr + n_coeffs + 8); in vp9_fdct8x8_quant_ssse3() 341 store_tran_low(coeff0, dqcoeff_ptr + n_coeffs); in vp9_fdct8x8_quant_ssse3() 342 store_tran_low(coeff1, dqcoeff_ptr + n_coeffs + 8); in vp9_fdct8x8_quant_ssse3() 355 iscan0 = _mm_load_si128((const __m128i *)(iscan + n_coeffs)); in vp9_fdct8x8_quant_ssse3() [all …]
|
/external/libvpx/libvpx/vpx_dsp/ |
D | quantize.c | 18 void vpx_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, in vpx_quantize_dc() argument 28 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc() 29 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc() 42 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, in vpx_highbd_quantize_dc() argument 49 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_dc() 50 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_dc() 70 const int n_coeffs = 1024; in vpx_quantize_dc_32x32() local 77 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc_32x32() 78 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/libaom/libaom/aom_dsp/ |
D | quantize.c | 17 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in quantize_b_adaptive_helper_c() argument 26 int i, non_zero_count = (int)n_coeffs, eob = -1; in quantize_b_adaptive_helper_c() 29 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in quantize_b_adaptive_helper_c() 30 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in quantize_b_adaptive_helper_c() 37 for (i = (int)n_coeffs - 1; i >= 0; i--) { in quantize_b_adaptive_helper_c() 107 void quantize_b_helper_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in quantize_b_helper_c() argument 118 int i, non_zero_count = (int)n_coeffs, eob = -1; in quantize_b_helper_c() 121 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in quantize_b_helper_c() 122 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in quantize_b_helper_c() 125 for (i = (int)n_coeffs - 1; i >= 0; i--) { in quantize_b_helper_c() [all …]
|
D | quantize.h | 24 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, 31 void aom_quantize_b_adaptive_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, 41 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, 48 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, 55 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, 63 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, 70 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, 77 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, 83 void quantize_b_helper_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, 92 void aom_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, [all …]
|
/external/libaom/libaom/av1/encoder/x86/ |
D | av1_quantize_sse2.c | 72 const tran_low_t *coeff_ptr, intptr_t n_coeffs, in quantize() argument 81 read_coeff(coeff_ptr, n_coeffs, &coeff0, &coeff1); in quantize() 108 write_qcoeff(&qcoeff0, &qcoeff1, qcoeff_ptr, n_coeffs); in quantize() 113 write_qcoeff(&coeff0, &coeff1, dqcoeff_ptr, n_coeffs); in quantize() 122 _mm_load_si128((const __m128i *)(iscan_ptr + n_coeffs)); in quantize() 124 _mm_load_si128((const __m128i *)(iscan_ptr + n_coeffs) + 1); in quantize() 133 write_zero(qcoeff_ptr, n_coeffs); in quantize() 134 write_zero(dqcoeff_ptr, n_coeffs); in quantize() 138 void av1_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in av1_quantize_fp_sse2() argument 149 coeff_ptr += n_coeffs; in av1_quantize_fp_sse2() [all …]
|
D | av1_quantize_avx2.c | 135 void av1_quantize_fp_avx2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in av1_quantize_fp_avx2() argument 161 n_coeffs -= step; in av1_quantize_fp_avx2() 165 while (n_coeffs > 0) { in av1_quantize_fp_avx2() 173 n_coeffs -= step; in av1_quantize_fp_avx2() 212 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in av1_quantize_fp_32x32_avx2() argument 236 n_coeffs -= step; in av1_quantize_fp_32x32_avx2() 240 while (n_coeffs > 0) { in av1_quantize_fp_32x32_avx2() 248 n_coeffs -= step; in av1_quantize_fp_32x32_avx2() 291 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in av1_quantize_fp_64x64_avx2() argument 315 n_coeffs -= step; in av1_quantize_fp_64x64_avx2() [all …]
|
D | av1_highbd_quantize_avx2.c | 91 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in av1_highbd_quantize_fp_avx2() argument 112 n_coeffs -= step; in av1_highbd_quantize_fp_avx2() 115 while (n_coeffs > 0) { in av1_highbd_quantize_fp_avx2() 123 n_coeffs -= step; in av1_highbd_quantize_fp_avx2()
|
/external/libaom/libaom/test/ |
D | quantize_func_test.cc | 31 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, \ 41 fn(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, quant_ptr, quant_shift_ptr, \ 45 fn(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, quant_ptr, quant_shift_ptr, \ 89 const int n_coeffs = coeff_num(); in SetUp() local 91 aom_memalign(32, 6 * n_coeffs * sizeof(tran_low_t))); in SetUp() 109 const intptr_t n_coeffs = coeff_num(); in QuantizeRun() local 111 tran_low_t *qcoeff_ref = coeff_ptr + n_coeffs; in QuantizeRun() 112 tran_low_t *dqcoeff_ref = qcoeff_ref + n_coeffs; in QuantizeRun() 114 tran_low_t *qcoeff = dqcoeff_ref + n_coeffs; in QuantizeRun() 115 tran_low_t *dqcoeff = qcoeff + n_coeffs; in QuantizeRun() [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | av1_quantize.c | 29 void av1_quantize_skip(intptr_t n_coeffs, tran_low_t *qcoeff_ptr, in av1_quantize_skip() argument 31 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in av1_quantize_skip() 32 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in av1_quantize_skip() 37 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in quantize_fp_helper_c() argument 52 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in quantize_fp_helper_c() 53 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in quantize_fp_helper_c() 56 for (i = 0; i < n_coeffs; i++) { in quantize_fp_helper_c() 79 for (i = 0; i < n_coeffs; i++) { in quantize_fp_helper_c() 182 void av1_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in av1_quantize_fp_c() argument 188 quantize_fp_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, quant_ptr, in av1_quantize_fp_c() [all …]
|
D | av1_quantize.h | 36 typedef void (*AV1_QUANT_FACADE)(const tran_low_t *coeff_ptr, intptr_t n_coeffs, 109 void av1_quantize_skip(intptr_t n_coeffs, tran_low_t *qcoeff_ptr, 112 void av1_quantize_fp_facade(const tran_low_t *coeff_ptr, intptr_t n_coeffs, 117 void av1_quantize_b_facade(const tran_low_t *coeff_ptr, intptr_t n_coeffs, 122 void av1_quantize_dc_facade(const tran_low_t *coeff_ptr, intptr_t n_coeffs, 128 intptr_t n_coeffs, const MACROBLOCK_PLANE *p, 135 intptr_t n_coeffs, const MACROBLOCK_PLANE *p, 142 intptr_t n_coeffs, const MACROBLOCK_PLANE *p,
|
/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 …]
|
/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 …_sse2(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 47 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 91 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 94 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 112 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 113 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 114 void vp9_quantize_fp_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const in… 117 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const … 118 void vp9_quantize_fp_32x32_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, co…
|
/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, … 86 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 89 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 107 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 108 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 111 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const … 112 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, … 86 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 89 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 107 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 108 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 111 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const … 112 void vp9_quantize_fp_32x32_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, con…
|
/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 …_sse2(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 47 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, … 91 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const… 94 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,… 112 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_… 113 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int… 116 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
|
/external/libaom/libaom/aom_dsp/x86/ |
D | highbd_quantize_intrin_sse2.c | 93 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_highbd_quantize_b_32x32_sse2() argument 114 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in aom_highbd_quantize_b_32x32_sse2() 115 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in aom_highbd_quantize_b_32x32_sse2() 118 for (i = 0; i < n_coeffs / 4; i++) { in aom_highbd_quantize_b_32x32_sse2() 151 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_highbd_quantize_b_64x64_sse2() argument 172 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in aom_highbd_quantize_b_64x64_sse2() 173 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in aom_highbd_quantize_b_64x64_sse2() 176 for (i = 0; i < n_coeffs / 4; i++) { in aom_highbd_quantize_b_64x64_sse2()
|
D | adaptive_quantize_sse2.c | 20 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_quantize_b_adaptive_sse2() argument 27 int non_zero_count = (int)n_coeffs; in aom_quantize_b_adaptive_sse2() 43 memset(prescan, -1, n_coeffs * sizeof(int16_t)); in aom_quantize_b_adaptive_sse2() 46 for (int i = (int)n_coeffs - 1; i >= 0; i--) { in aom_quantize_b_adaptive_sse2() 131 while (index < n_coeffs) { in aom_quantize_b_adaptive_sse2() 217 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_quantize_b_32x32_adaptive_sse2() argument 223 int non_zero_count = (int)n_coeffs; in aom_quantize_b_32x32_adaptive_sse2() 243 memset(prescan, -1, n_coeffs * sizeof(int16_t)); in aom_quantize_b_32x32_adaptive_sse2() 246 for (int i = (int)n_coeffs - 1; i >= 0; i--) { in aom_quantize_b_32x32_adaptive_sse2() 339 while (index < n_coeffs) { in aom_quantize_b_32x32_adaptive_sse2()
|
D | highbd_quantize_intrin_avx2.c | 112 void aom_highbd_quantize_b_avx2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in aom_highbd_quantize_b_avx2() argument 134 n_coeffs -= step; in aom_highbd_quantize_b_avx2() 138 while (n_coeffs > 0) { in aom_highbd_quantize_b_avx2() 146 n_coeffs -= step; in aom_highbd_quantize_b_avx2()
|
/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/libvpx/vpx_dsp/arm/ |
D | quantize_neon.c | 34 void vpx_quantize_b_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_neon() argument 96 n_coeffs -= 8; in vpx_quantize_b_neon() 146 n_coeffs -= 8; in vpx_quantize_b_neon() 147 } while (n_coeffs > 0); in vpx_quantize_b_neon() 191 void vpx_quantize_b_32x32_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_32x32_neon() argument 204 (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 | 97 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_highbd_quantize_b_32x32_sse2() argument 121 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2() 122 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2() 125 for (i = 0; i < n_coeffs / 4; i++) { in vpx_highbd_quantize_b_32x32_sse2()
|