Lines Matching refs:qcoeff0
104 int16x8_t qcoeff0, qcoeff1, dqcoeff0, dqcoeff1, eob; in vpx_quantize_b_vsx() local
128 qcoeff0 = in vpx_quantize_b_vsx()
130 vec_vsx_st(qcoeff0, 0, qcoeff_ptr); in vpx_quantize_b_vsx()
138 dqcoeff0 = vec_mladd(qcoeff0, dequant, vec_zeros_s16); in vpx_quantize_b_vsx()
144 eob = vec_max(nonzero_scanindex(qcoeff0, zero_mask0, iscan_ptr, 0), in vpx_quantize_b_vsx()
164 qcoeff0 = quantize_coeff(coeff0, coeff0_abs, round, quant, quant_shift, in vpx_quantize_b_vsx()
170 vec_vsx_st(qcoeff0, off0, qcoeff_ptr); in vpx_quantize_b_vsx()
174 dqcoeff0 = vec_mladd(qcoeff0, dequant, vec_zeros_s16); in vpx_quantize_b_vsx()
183 vec_max(eob, nonzero_scanindex(qcoeff0, zero_mask0, iscan_ptr, off0)); in vpx_quantize_b_vsx()
214 int16x8_t qcoeff0, qcoeff1, eob; in vpx_quantize_b_32x32_vsx() local
242 qcoeff0 = quantize_coeff_32(coeff0, coeff0_abs, round, quant, quant_shift, in vpx_quantize_b_32x32_vsx()
250 vec_vsx_st(qcoeff0, 0, qcoeff_ptr); in vpx_quantize_b_32x32_vsx()
253 vec_vsx_st(dequantize_coeff_32(qcoeff0, dequant), 0, dqcoeff_ptr); in vpx_quantize_b_32x32_vsx()
257 eob = vec_max(nonzero_scanindex(qcoeff0, zero_mask0, iscan_ptr, 0), in vpx_quantize_b_32x32_vsx()
276 qcoeff0 = quantize_coeff_32(coeff0, coeff0_abs, round, quant, quant_shift, in vpx_quantize_b_32x32_vsx()
283 vec_vsx_st(qcoeff0, off0, qcoeff_ptr); in vpx_quantize_b_32x32_vsx()
287 vec_vsx_st(dequantize_coeff_32(qcoeff0, dequant), off0, dqcoeff_ptr); in vpx_quantize_b_32x32_vsx()
291 eob = vec_max(eob, nonzero_scanindex(qcoeff0, zero_mask0, iscan_ptr, off0)); in vpx_quantize_b_32x32_vsx()