Lines Matching refs:n_coeffs
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()
170 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in highbd_quantize_b_adaptive_helper_c() argument
185 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in highbd_quantize_b_adaptive_helper_c()
186 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in highbd_quantize_b_adaptive_helper_c()
193 for (i = 0; i < n_coeffs; i++) { in highbd_quantize_b_adaptive_helper_c()
258 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in highbd_quantize_b_helper_c() argument
273 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in highbd_quantize_b_helper_c()
274 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in highbd_quantize_b_helper_c()
277 for (i = 0; i < n_coeffs; i++) { in highbd_quantize_b_helper_c()
316 void aom_quantize_b_adaptive_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in aom_quantize_b_adaptive_c() argument
324 quantize_b_adaptive_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, in aom_quantize_b_adaptive_c()
331 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_quantize_b_32x32_adaptive_c() argument
336 quantize_b_adaptive_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, in aom_quantize_b_32x32_adaptive_c()
343 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_quantize_b_64x64_adaptive_c() argument
348 quantize_b_adaptive_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, in aom_quantize_b_64x64_adaptive_c()
355 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_highbd_quantize_b_adaptive_c() argument
360 highbd_quantize_b_adaptive_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, in aom_highbd_quantize_b_adaptive_c()
367 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_highbd_quantize_b_32x32_adaptive_c() argument
372 highbd_quantize_b_adaptive_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, in aom_highbd_quantize_b_32x32_adaptive_c()
379 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_highbd_quantize_b_64x64_adaptive_c() argument
384 highbd_quantize_b_adaptive_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, in aom_highbd_quantize_b_64x64_adaptive_c()
390 void aom_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in aom_quantize_b_c() argument
396 quantize_b_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, quant_ptr, in aom_quantize_b_c()
401 void aom_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in aom_quantize_b_32x32_c() argument
408 quantize_b_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, quant_ptr, in aom_quantize_b_32x32_c()
413 void aom_quantize_b_64x64_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in aom_quantize_b_64x64_c() argument
420 quantize_b_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, quant_ptr, in aom_quantize_b_64x64_c()
425 void aom_highbd_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in aom_highbd_quantize_b_c() argument
432 highbd_quantize_b_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, in aom_highbd_quantize_b_c()
439 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_highbd_quantize_b_32x32_c() argument
444 highbd_quantize_b_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, in aom_highbd_quantize_b_32x32_c()
451 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, in aom_highbd_quantize_b_64x64_c() argument
456 highbd_quantize_b_helper_c(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, in aom_highbd_quantize_b_64x64_c()