/external/libvpx/libvpx/vpx_dsp/x86/ |
D | quantize_avx.c | 34 __m128i zbin, round, quant, dequant, shift; in vpx_quantize_b_avx() local 48 dequant_ptr, &dequant, quant_shift_ptr, &shift); in vpx_quantize_b_avx() 75 dequant = _mm_unpackhi_epi64(dequant, dequant); in vpx_quantize_b_avx() 94 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr); in vpx_quantize_b_avx() 95 dequant = _mm_unpackhi_epi64(dequant, dequant); in vpx_quantize_b_avx() 96 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + 8); in vpx_quantize_b_avx() 136 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr + index); in vpx_quantize_b_avx() 137 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + index + 8); in vpx_quantize_b_avx() 160 __m128i zbin, round, quant, dequant, shift; in vpx_quantize_b_32x32_avx() local 187 dequant = _mm_load_si128((const __m128i *)dequant_ptr); in vpx_quantize_b_32x32_avx() [all …]
|
D | quantize_ssse3.c | 30 __m128i zbin, round, quant, dequant, shift; in vpx_quantize_b_ssse3() local 41 dequant_ptr, &dequant, quant_shift_ptr, &shift); in vpx_quantize_b_ssse3() 71 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr); in vpx_quantize_b_ssse3() 72 dequant = _mm_unpackhi_epi64(dequant, dequant); in vpx_quantize_b_ssse3() 73 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + 8); in vpx_quantize_b_ssse3() 100 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr + index); in vpx_quantize_b_ssse3() 101 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + index + 8); in vpx_quantize_b_ssse3() 125 __m128i zbin, round, quant, dequant, shift; in vpx_quantize_b_32x32_ssse3() local 152 dequant = _mm_load_si128((const __m128i *)dequant_ptr); in vpx_quantize_b_32x32_ssse3() 186 dequant = _mm_unpackhi_epi64(dequant, dequant); in vpx_quantize_b_32x32_ssse3() [all …]
|
D | quantize_sse2.c | 30 __m128i zbin, round, quant, dequant, shift; in vpx_quantize_b_sse2() local 42 dequant_ptr, &dequant, quant_shift_ptr, &shift); in vpx_quantize_b_sse2() 77 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr); in vpx_quantize_b_sse2() 78 dequant = _mm_unpackhi_epi64(dequant, dequant); in vpx_quantize_b_sse2() 79 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + 8); in vpx_quantize_b_sse2() 108 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr + index); in vpx_quantize_b_sse2() 109 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + index + 8); in vpx_quantize_b_sse2()
|
D | quantize_sse2.h | 22 const int16_t *dequant_ptr, __m128i *dequant, in load_b_values() argument 28 *dequant = _mm_load_si128((const __m128i *)dequant_ptr); in load_b_values() 47 static INLINE void calculate_dqcoeff_and_store(__m128i qcoeff, __m128i dequant, in calculate_dqcoeff_and_store() argument 50 const __m128i low = _mm_mullo_epi16(qcoeff, dequant); in calculate_dqcoeff_and_store() 51 const __m128i high = _mm_mulhi_epi16(qcoeff, dequant); in calculate_dqcoeff_and_store() 59 const __m128i dqcoeff16 = _mm_mullo_epi16(qcoeff, dequant); in calculate_dqcoeff_and_store()
|
D | quantize_ssse3.h | 21 const __m128i dequant, in calculate_dqcoeff_and_store_32x32() argument 30 const __m128i low = _mm_mullo_epi16(coeff, dequant); in calculate_dqcoeff_and_store_32x32() 31 const __m128i high = _mm_mulhi_epi16(coeff, dequant); in calculate_dqcoeff_and_store_32x32()
|
/external/libaom/libaom/aom_dsp/x86/ |
D | highbd_adaptive_quantize_sse2.c | 86 static INLINE __m128i highbd_calculate_dqcoeff(__m128i qcoeff, __m128i dequant, in highbd_calculate_dqcoeff() argument 90 highbd_mul_shift_sse2(&abs_coeff, &dequant, &abs_coeff, log_scale); in highbd_calculate_dqcoeff() 108 __m128i zbin, round, quant, dequant, shift; in aom_highbd_quantize_b_adaptive_sse2() local 134 dequant = _mm_load_si128((const __m128i *)dequant_ptr); in aom_highbd_quantize_b_adaptive_sse2() 140 __m128i dequant_sign = _mm_srai_epi16(dequant, 15); in aom_highbd_quantize_b_adaptive_sse2() 146 dequant = _mm_unpacklo_epi16(dequant, dequant_sign); in aom_highbd_quantize_b_adaptive_sse2() 178 dequant = _mm_unpackhi_epi64(dequant, dequant); in aom_highbd_quantize_b_adaptive_sse2() 198 coeff0 = highbd_calculate_dqcoeff(qcoeff0, dequant, log_scale); in aom_highbd_quantize_b_adaptive_sse2() 199 dequant = _mm_unpackhi_epi64(dequant, dequant); in aom_highbd_quantize_b_adaptive_sse2() 200 coeff1 = highbd_calculate_dqcoeff(qcoeff1, dequant, log_scale); in aom_highbd_quantize_b_adaptive_sse2() [all …]
|
D | quantize_ssse3.c | 37 const __m128i dequant, in calculate_dqcoeff_and_store_64x64() argument 46 const __m128i low = _mm_mullo_epi16(coeff, dequant); in calculate_dqcoeff_and_store_64x64() 47 const __m128i high = _mm_mulhi_epi16(coeff, dequant); in calculate_dqcoeff_and_store_64x64() 75 __m128i zbin, round, quant, dequant, shift; in aom_quantize_b_64x64_ssse3() local 87 dequant = _mm_load_si128((const __m128i *)dequant_ptr); in aom_quantize_b_64x64_ssse3() 119 dequant = _mm_unpackhi_epi64(dequant, dequant); in aom_quantize_b_64x64_ssse3() 138 calculate_dqcoeff_and_store_64x64(qcoeff0, dequant, zero, dqcoeff_ptr); in aom_quantize_b_64x64_ssse3() 139 dequant = _mm_unpackhi_epi64(dequant, dequant); in aom_quantize_b_64x64_ssse3() 140 calculate_dqcoeff_and_store_64x64(qcoeff1, dequant, zero, dqcoeff_ptr + 8); in aom_quantize_b_64x64_ssse3() 181 calculate_dqcoeff_and_store_64x64(qcoeff0, dequant, zero, in aom_quantize_b_64x64_ssse3() [all …]
|
D | highbd_adaptive_quantize_avx2.c | 24 const int16_t *dequant_ptr, __m256i *dequant, const int16_t *shift_ptr, in highbd_load_b_values_avx2() argument 30 *dequant = in highbd_load_b_values_avx2() 88 __m256i dequant) { in highbd_calculate_dqcoeff_avx2() argument 89 return _mm256_mullo_epi32(qcoeff, dequant); in highbd_calculate_dqcoeff_avx2() 93 __m256i qcoeff, __m256i dequant, const int log_scale) { in highbd_calculate_dqcoeff_log_scale_avx2() argument 95 highbd_mul_shift_avx2(&abs_coeff, &dequant, &abs_coeff, log_scale); in highbd_calculate_dqcoeff_log_scale_avx2() 118 __m256i zbin, round, quant, dequant, shift; in aom_highbd_quantize_b_adaptive_avx2() local 141 &quant, dequant_ptr, &dequant, quant_shift_ptr, in aom_highbd_quantize_b_adaptive_avx2() 165 dequant = _mm256_unpackhi_epi64(dequant, dequant); in aom_highbd_quantize_b_adaptive_avx2() 179 coeff0 = highbd_calculate_dqcoeff_avx2(qcoeff0, dequant); in aom_highbd_quantize_b_adaptive_avx2() [all …]
|
D | adaptive_quantize_sse2.c | 31 __m128i zbin, round, quant, dequant, shift; in aom_quantize_b_adaptive_sse2() local 55 dequant_ptr, &dequant, quant_shift_ptr, &shift); in aom_quantize_b_adaptive_sse2() 89 dequant = _mm_unpackhi_epi64(dequant, dequant); in aom_quantize_b_adaptive_sse2() 110 coeff0 = calculate_dqcoeff(qcoeff0, dequant); in aom_quantize_b_adaptive_sse2() 111 dequant = _mm_unpackhi_epi64(dequant, dequant); in aom_quantize_b_adaptive_sse2() 112 coeff1 = calculate_dqcoeff(qcoeff1, dequant); in aom_quantize_b_adaptive_sse2() 161 coeff0 = calculate_dqcoeff(qcoeff0, dequant); in aom_quantize_b_adaptive_sse2() 162 coeff1 = calculate_dqcoeff(qcoeff1, dequant); in aom_quantize_b_adaptive_sse2() 234 __m128i zbin, round, quant, dequant, shift; in aom_quantize_b_32x32_adaptive_sse2() local 262 dequant = _mm_load_si128((const __m128i *)dequant_ptr); in aom_quantize_b_32x32_adaptive_sse2() [all …]
|
D | adaptive_quantize_avx2.c | 22 __m256i *dequant, in load_b_values_avx2() argument 32 *dequant = in load_b_values_avx2() 34 *dequant = _mm256_permute4x64_epi64(*dequant, 0x54); in load_b_values_avx2() 83 static INLINE __m256i calculate_dqcoeff_avx2(__m256i qcoeff, __m256i dequant) { in calculate_dqcoeff_avx2() argument 84 return _mm256_mullo_epi16(qcoeff, dequant); in calculate_dqcoeff_avx2() 108 __m256i zbin, round, quant, dequant, shift; in aom_quantize_b_adaptive_avx2() local 130 dequant_ptr, &dequant, quant_shift_ptr, &shift); in aom_quantize_b_adaptive_avx2() 149 dequant = _mm256_unpackhi_epi64(dequant, dequant); in aom_quantize_b_adaptive_avx2() 160 coeff = calculate_dqcoeff_avx2(qcoeff, dequant); in aom_quantize_b_adaptive_avx2() 161 dequant = _mm256_unpackhi_epi64(dequant, dequant); in aom_quantize_b_adaptive_avx2() [all …]
|
D | quantize_sse2.c | 31 __m128i zbin, round, quant, dequant, shift; in aom_quantize_b_sse2() local 41 dequant_ptr, &dequant, quant_shift_ptr, &shift); in aom_quantize_b_sse2() 76 coeff0 = calculate_dqcoeff(qcoeff0, dequant); in aom_quantize_b_sse2() 77 dequant = _mm_unpackhi_epi64(dequant, dequant); in aom_quantize_b_sse2() 78 coeff1 = calculate_dqcoeff(qcoeff1, dequant); in aom_quantize_b_sse2() 111 coeff0 = calculate_dqcoeff(qcoeff0, dequant); in aom_quantize_b_sse2() 112 coeff1 = calculate_dqcoeff(qcoeff1, dequant); in aom_quantize_b_sse2()
|
D | quantize_x86.h | 19 const int16_t *dequant_ptr, __m128i *dequant, in load_b_values() argument 25 *dequant = _mm_load_si128((const __m128i *)dequant_ptr); in load_b_values() 65 static INLINE __m128i calculate_dqcoeff(__m128i qcoeff, __m128i dequant) { in calculate_dqcoeff() argument 66 return _mm_mullo_epi16(qcoeff, dequant); in calculate_dqcoeff() 70 __m128i dequant, in calculate_dqcoeff_and_store_log_scale() argument 81 const __m128i low = _mm_mullo_epi16(coeff, dequant); in calculate_dqcoeff_and_store_log_scale() 82 const __m128i high = _mm_mulhi_epi16(coeff, dequant); in calculate_dqcoeff_and_store_log_scale()
|
/external/libvpx/libvpx/vp9/encoder/ppc/ |
D | vp9_quantize_vsx.c | 52 int16x8_t dequant = vec_vsx_ld(0, dequant_ptr); in vp9_quantize_fp_vsx() local 68 dqcoeff0 = vec_mladd(qcoeff0, dequant, vec_zeros_s16); in vp9_quantize_fp_vsx() 76 dequant = vec_splat(dequant, 1); in vp9_quantize_fp_vsx() 84 dqcoeff1 = vec_mladd(qcoeff1, dequant, vec_zeros_s16); in vp9_quantize_fp_vsx() 114 dqcoeff0 = vec_mladd(qcoeff0, dequant, vec_zeros_s16); in vp9_quantize_fp_vsx() 121 dqcoeff1 = vec_mladd(qcoeff1, dequant, vec_zeros_s16); in vp9_quantize_fp_vsx() 128 dqcoeff2 = vec_mladd(qcoeff2, dequant, vec_zeros_s16); in vp9_quantize_fp_vsx() 156 int16x8_t dequant) { in dequantize_coeff_32() 157 int32x4_t dqcoeffe = vec_mule(qcoeff, dequant); in dequantize_coeff_32() 158 int32x4_t dqcoeffo = vec_mulo(qcoeff, dequant); in dequantize_coeff_32() [all …]
|
/external/libvpx/libvpx/vpx_dsp/ppc/ |
D | quantize_vsx.c | 70 int16x8_t dequant) { in dequantize_coeff_32() 71 int32x4_t dqcoeffe = vec_mule(qcoeff, dequant); in dequantize_coeff_32() 72 int32x4_t dqcoeffo = vec_mulo(qcoeff, dequant); in dequantize_coeff_32() 111 int16x8_t dequant = vec_vsx_ld(0, dequant_ptr); in vpx_quantize_b_vsx() local 138 dqcoeff0 = vec_mladd(qcoeff0, dequant, vec_zeros_s16); in vpx_quantize_b_vsx() 140 dequant = vec_splat(dequant, 1); in vpx_quantize_b_vsx() 141 dqcoeff1 = vec_mladd(qcoeff1, dequant, vec_zeros_s16); in vpx_quantize_b_vsx() 174 dqcoeff0 = vec_mladd(qcoeff0, dequant, vec_zeros_s16); in vpx_quantize_b_vsx() 175 dqcoeff1 = vec_mladd(qcoeff1, dequant, vec_zeros_s16); in vpx_quantize_b_vsx() 176 dqcoeff2 = vec_mladd(qcoeff2, dequant, vec_zeros_s16); in vpx_quantize_b_vsx() [all …]
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | quantize_neon.c | 19 const int16x8_t dequant, in calculate_dqcoeff_and_store() argument 22 vmull_s16(vget_low_s16(qcoeff), vget_low_s16(dequant)); in calculate_dqcoeff_and_store() 24 vmull_s16(vget_high_s16(qcoeff), vget_high_s16(dequant)); in calculate_dqcoeff_and_store() 55 const int16x8_t dequant = vld1q_s16(dequant_ptr); in vpx_quantize_b_neon() local 92 calculate_dqcoeff_and_store(qcoeff, dequant, dqcoeff_ptr); in vpx_quantize_b_neon() 103 const int16x8_t dequant = vdupq_n_s16(dequant_ptr[1]); in vpx_quantize_b_neon() local 143 calculate_dqcoeff_and_store(qcoeff, dequant, dqcoeff_ptr); in vpx_quantize_b_neon() 168 const int16x8_t dequant, in calculate_dqcoeff_and_store_32x32() argument 170 int32x4_t dqcoeff_0 = vmull_s16(vget_low_s16(qcoeff), vget_low_s16(dequant)); in calculate_dqcoeff_and_store_32x32() 172 vmull_s16(vget_high_s16(qcoeff), vget_high_s16(dequant)); in calculate_dqcoeff_and_store_32x32() [all …]
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_quantize_sse2.c | 30 __m128i round, quant, dequant; in vp9_quantize_fp_sse2() local 50 dequant = _mm_load_si128((const __m128i *)dequant_ptr); in vp9_quantize_fp_sse2() 85 coeff0 = _mm_mullo_epi16(qcoeff0, dequant); in vp9_quantize_fp_sse2() 86 dequant = _mm_unpackhi_epi64(dequant, dequant); in vp9_quantize_fp_sse2() 87 coeff1 = _mm_mullo_epi16(qcoeff1, dequant); in vp9_quantize_fp_sse2() 115 thr = _mm_srai_epi16(dequant, 1); in vp9_quantize_fp_sse2() 154 coeff0 = _mm_mullo_epi16(qcoeff0, dequant); in vp9_quantize_fp_sse2() 155 coeff1 = _mm_mullo_epi16(qcoeff1, dequant); in vp9_quantize_fp_sse2()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | quantize.h | 24 const int16_t dequant, uint16_t *eob_ptr); 28 const int16_t dequant, uint16_t *eob_ptr); 34 tran_low_t *dqcoeff_ptr, const int16_t dequant, 40 const int16_t dequant, uint16_t *eob_ptr);
|
D | quantize.c | 21 const int16_t dequant, uint16_t *eob_ptr) { in vpx_quantize_dc() argument 35 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant; in vpx_quantize_dc() 45 tran_low_t *dqcoeff_ptr, const int16_t dequant, in vpx_highbd_quantize_dc() argument 59 dqcoeff_ptr[0] = qcoeff_ptr[0] * dequant; in vpx_highbd_quantize_dc() 69 const int16_t dequant, uint16_t *eob_ptr) { in vpx_quantize_dc_32x32() argument 85 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant / 2; in vpx_quantize_dc_32x32() 96 const int16_t dequant, uint16_t *eob_ptr) { in vpx_highbd_quantize_dc_32x32() argument 110 dqcoeff_ptr[0] = qcoeff_ptr[0] * dequant / 2; in vpx_highbd_quantize_dc_32x32()
|
/external/libaom/libaom/av1/encoder/x86/ |
D | av1_highbd_quantize_sse4.c | 121 __m128i coeff[2], qcoeff[3], dequant[2], qparam[4], coeff_sign; in av1_highbd_quantize_fp_sse4_1() local 147 quantize_coeff_phase1(&coeff[0], qparam, shift, log_scale, qcoeff, dequant, in av1_highbd_quantize_fp_sse4_1() 155 quantize_coeff_phase2(qcoeff, dequant, &coeff_sign, qparam, shift, log_scale, in av1_highbd_quantize_fp_sse4_1() 160 quantize_coeff_phase1(&coeff[1], qparam, shift, log_scale, qcoeff, dequant, in av1_highbd_quantize_fp_sse4_1() 162 quantize_coeff_phase2(qcoeff, dequant, &coeff_sign, qparam, shift, log_scale, in av1_highbd_quantize_fp_sse4_1() 179 quantize_coeff_phase1(&coeff[0], qparam, shift, log_scale, qcoeff, dequant, in av1_highbd_quantize_fp_sse4_1() 181 quantize_coeff_phase2(qcoeff, dequant, &coeff_sign, qparam, shift, in av1_highbd_quantize_fp_sse4_1() 184 quantize_coeff_phase1(&coeff[1], qparam, shift, log_scale, qcoeff, dequant, in av1_highbd_quantize_fp_sse4_1() 186 quantize_coeff_phase2(qcoeff, dequant, &coeff_sign, qparam, shift, in av1_highbd_quantize_fp_sse4_1()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encodemb.c | 79 const int16_t *const dequant_ptr = pd->dequant; in vp9_optimize_b() 370 p->quant_fp, qcoeff, dqcoeff, pd->dequant, in vp9_xform_quant_fp() 376 p->quant_fp, qcoeff, dqcoeff, pd->dequant, eob, in vp9_xform_quant_fp() 382 p->quant_fp, qcoeff, dqcoeff, pd->dequant, eob, in vp9_xform_quant_fp() 389 p->quant_fp, qcoeff, dqcoeff, pd->dequant, eob, in vp9_xform_quant_fp() 401 p->quant_fp, qcoeff, dqcoeff, pd->dequant, eob, in vp9_xform_quant_fp() 407 qcoeff, dqcoeff, pd->dequant, eob, scan_order->scan, in vp9_xform_quant_fp() 413 qcoeff, dqcoeff, pd->dequant, eob, scan_order->scan, in vp9_xform_quant_fp() 421 qcoeff, dqcoeff, pd->dequant, eob, scan_order->scan, in vp9_xform_quant_fp() 449 pd->dequant[0], eob); in vp9_xform_quant_dc() [all …]
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | numeric_verify.cc | 177 float dequant = GetTensorData<float>(dequantized)[i]; in Eval() local 179 output_data[i] = dequant - reference; in Eval() 187 op_context.input->params.zero_point, reference, dequant, diff, in Eval() 202 float dequant = GetTensorData<float>(dequantized)[i]; in Eval() local 204 diffs[i] = static_cast<double>(dequant - reference); in Eval() 205 output_data[i] = dequant - reference; in Eval()
|
/external/libaom/libaom/test/ |
D | quantize_func_test.cc | 76 Dequants dequant; member 106 av1_build_quantizer(bd_, 0, 0, 0, 0, 0, &qtab_->quant, &qtab_->dequant); in InitQuantizer() 137 const int16_t *dequant = qtab_->dequant.y_dequant_QTX[q]; in QuantizeRun() local 145 qcoeff_ref, dqcoeff_ref, dequant, &eob[0], sc->scan, in QuantizeRun() 149 quant_shift, qcoeff, dqcoeff, dequant, in QuantizeRun() 296 const int16_t *dequant = qtab_->dequant.y_dequant_QTX[q]; in TEST_P() local 309 qcoeff, dqcoeff, dequant, eob, sc->scan, sc->iscan); in TEST_P() 316 dqcoeff, dequant, eob, sc->scan, sc->iscan); in TEST_P()
|
/external/libaom/libaom/aom_dsp/ |
D | quantize.c | 72 const int dequant = in aom_quantize_b_adaptive_helper_c() local 75 const tran_low_t abs_dqcoeff = (tmp32 * dequant) >> log_scale; in aom_quantize_b_adaptive_helper_c() 158 const int dequant = in aom_quantize_b_helper_c() local 161 const tran_low_t abs_dqcoeff = (tmp32 * dequant) >> log_scale; in aom_quantize_b_helper_c() 224 const int dequant = in aom_highbd_quantize_b_adaptive_helper_c() local 227 const tran_low_t abs_dqcoeff = (abs_qcoeff * dequant) >> log_scale; in aom_highbd_quantize_b_adaptive_helper_c() 269 int dequant; in aom_highbd_quantize_b_helper_c() local 306 dequant = in aom_highbd_quantize_b_helper_c() 308 const tran_low_t abs_dqcoeff = (abs_qcoeff * dequant) >> log_scale; in aom_highbd_quantize_b_helper_c()
|
/external/libvpx/libvpx/test/ |
D | vp9_quantize_test.cc | 44 tran_low_t *dqcoeff, const int16_t *dequant, 55 tran_low_t *dqcoeff, const int16_t *dequant, 64 const int16_t *dequant, uint16_t *eob, const int16_t *scan, in QuantFPWrapper() argument 69 fn(coeff, count, skip_block, round, quant, qcoeff, dqcoeff, dequant, eob, in QuantFPWrapper() 267 int16_t *dequant, int16_t *round_fp, in GenerateHelperArrays() argument 291 dequant[j] = rnd->RandRange(1828); in GenerateHelperArrays() 300 dequant[j] = dequant[1]; in GenerateHelperArrays()
|
/external/libvpx/libvpx/vp9/encoder/arm/neon/ |
D | vp9_quantize_neon.c | 30 const int16x8_t dequant, in calculate_dqcoeff_and_store() argument 33 vmull_s16(vget_low_s16(qcoeff), vget_low_s16(dequant)); in calculate_dqcoeff_and_store() 35 vmull_s16(vget_high_s16(qcoeff), vget_high_s16(dequant)); in calculate_dqcoeff_and_store() 152 const int16x4_t dequant = vld1_s16(dequant_ptr); in vp9_quantize_fp_32x32_neon() local 182 dqcoeff_0 = vmull_s16(vget_low_s16(qcoeff), dequant); in vp9_quantize_fp_32x32_neon()
|