• Home
  • Raw
  • Download

Lines Matching refs:qcoeff1

36   __m128i qcoeff0, qcoeff1;  in vpx_quantize_b_avx()  local
55 qcoeff1 = _mm_abs_epi16(coeff1); in vpx_quantize_b_avx()
59 cmp_mask1 = _mm_cmpgt_epi16(qcoeff1, zbin); in vpx_quantize_b_avx()
81 calculate_qcoeff(&qcoeff1, round, quant, shift); in vpx_quantize_b_avx()
85 qcoeff1 = _mm_sign_epi16(qcoeff1, coeff1); in vpx_quantize_b_avx()
89 qcoeff1 = _mm_and_si128(qcoeff1, cmp_mask1); in vpx_quantize_b_avx()
92 store_tran_low(qcoeff1, qcoeff_ptr + 8); in vpx_quantize_b_avx()
96 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + 8); in vpx_quantize_b_avx()
99 scan_for_eob(&qcoeff0, &qcoeff1, cmp_mask0, cmp_mask1, iscan, 0, zero); in vpx_quantize_b_avx()
108 qcoeff1 = _mm_abs_epi16(coeff1); in vpx_quantize_b_avx()
111 cmp_mask1 = _mm_cmpgt_epi16(qcoeff1, zbin); in vpx_quantize_b_avx()
125 calculate_qcoeff(&qcoeff1, round, quant, shift); in vpx_quantize_b_avx()
128 qcoeff1 = _mm_sign_epi16(qcoeff1, coeff1); in vpx_quantize_b_avx()
131 qcoeff1 = _mm_and_si128(qcoeff1, cmp_mask1); in vpx_quantize_b_avx()
134 store_tran_low(qcoeff1, qcoeff_ptr + index + 8); in vpx_quantize_b_avx()
137 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + index + 8); in vpx_quantize_b_avx()
139 eob0 = scan_for_eob(&qcoeff0, &qcoeff1, cmp_mask0, cmp_mask1, iscan, index, in vpx_quantize_b_avx()
162 __m128i qcoeff0, qcoeff1; in vpx_quantize_b_32x32_avx() local
196 qcoeff1 = _mm_abs_epi16(coeff1); in vpx_quantize_b_32x32_avx()
200 cmp_mask1 = _mm_cmpgt_epi16(qcoeff1, zbin); in vpx_quantize_b_32x32_avx()
220 calculate_qcoeff(&qcoeff1, round, quant, shift); in vpx_quantize_b_32x32_avx()
224 qcoeff1 = _mm_sign_epi16(qcoeff1, coeff1); in vpx_quantize_b_32x32_avx()
228 qcoeff1 = _mm_and_si128(qcoeff1, cmp_mask1); in vpx_quantize_b_32x32_avx()
231 store_tran_low(qcoeff1, qcoeff_ptr + 8); in vpx_quantize_b_32x32_avx()
235 calculate_dqcoeff_and_store_32x32(qcoeff1, dequant, zero, dqcoeff_ptr + 8); in vpx_quantize_b_32x32_avx()
238 scan_for_eob(&qcoeff0, &qcoeff1, cmp_mask0, cmp_mask1, iscan, 0, zero); in vpx_quantize_b_32x32_avx()
247 qcoeff1 = _mm_abs_epi16(coeff1); in vpx_quantize_b_32x32_avx()
250 cmp_mask1 = _mm_cmpgt_epi16(qcoeff1, zbin); in vpx_quantize_b_32x32_avx()
264 calculate_qcoeff(&qcoeff1, round, quant, shift); in vpx_quantize_b_32x32_avx()
267 qcoeff1 = _mm_sign_epi16(qcoeff1, coeff1); in vpx_quantize_b_32x32_avx()
270 qcoeff1 = _mm_and_si128(qcoeff1, cmp_mask1); in vpx_quantize_b_32x32_avx()
273 store_tran_low(qcoeff1, qcoeff_ptr + index + 8); in vpx_quantize_b_32x32_avx()
277 calculate_dqcoeff_and_store_32x32(qcoeff1, dequant, zero, in vpx_quantize_b_32x32_avx()
280 eob0 = scan_for_eob(&qcoeff0, &qcoeff1, cmp_mask0, cmp_mask1, iscan, index, in vpx_quantize_b_32x32_avx()