Home
last modified time | relevance | path

Searched refs:dequant (Results 1 – 25 of 61) sorted by relevance

123

/external/libvpx/libvpx/vpx_dsp/x86/
Dquantize_avx.c34 __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 …]
Dquantize_ssse3.c30 __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 …]
Dquantize_sse2.c30 __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()
Dquantize_sse2.h22 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()
Dquantize_ssse3.h21 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/
Dhighbd_adaptive_quantize_sse2.c86 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 …]
Dquantize_ssse3.c37 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 …]
Dhighbd_adaptive_quantize_avx2.c24 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 …]
Dadaptive_quantize_sse2.c31 __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 …]
Dadaptive_quantize_avx2.c22 __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 …]
Dquantize_sse2.c31 __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()
Dquantize_x86.h19 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/
Dvp9_quantize_vsx.c52 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/
Dquantize_vsx.c70 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/
Dquantize_neon.c19 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/
Dvp9_quantize_sse2.c30 __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/
Dquantize.h24 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);
Dquantize.c21 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/
Dav1_highbd_quantize_sse4.c121 __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/
Dvp9_encodemb.c79 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/
Dnumeric_verify.cc177 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/
Dquantize_func_test.cc76 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/
Dquantize.c72 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/
Dvp9_quantize_test.cc44 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/
Dvp9_quantize_neon.c30 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()

123