Lines Matching refs:n_coeffs
31 const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *zbin_ptr, \
41 fn(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, quant_ptr, quant_shift_ptr, \
45 fn(coeff_ptr, n_coeffs, zbin_ptr, round_ptr, quant_ptr, quant_shift_ptr, \
89 const int n_coeffs = coeff_num(); in SetUp() local
91 aom_memalign(32, 6 * n_coeffs * sizeof(tran_low_t))); in SetUp()
109 const intptr_t n_coeffs = coeff_num(); in QuantizeRun() local
111 tran_low_t *qcoeff_ref = coeff_ptr + n_coeffs; in QuantizeRun()
112 tran_low_t *dqcoeff_ref = qcoeff_ref + n_coeffs; in QuantizeRun()
114 tran_low_t *qcoeff = dqcoeff_ref + n_coeffs; in QuantizeRun()
115 tran_low_t *dqcoeff = qcoeff + n_coeffs; in QuantizeRun()
116 uint16_t *eob = (uint16_t *)(dqcoeff + n_coeffs); in QuantizeRun()
140 memset(qcoeff_ref, 0, 5 * n_coeffs * sizeof(*qcoeff_ref)); in QuantizeRun()
142 quant_ref_(coeff_ptr, n_coeffs, zbin, round, quant, quant_shift, in QuantizeRun()
146 ASM_REGISTER_STATE_CHECK(quant_(coeff_ptr, n_coeffs, zbin, round, quant, in QuantizeRun()
150 for (int j = 0; j < n_coeffs; ++j) { in QuantizeRun()
156 for (int j = 0; j < n_coeffs; ++j) { in QuantizeRun()
179 const int n_coeffs = coeff_num(); in FillCoeff() local
180 for (int i = 0; i < n_coeffs; ++i) { in FillCoeff()
186 const int n_coeffs = coeff_num(); in FillCoeffRandom() local
188 int num = rnd_.Rand16() % n_coeffs; in FillCoeffRandom()
276 const intptr_t n_coeffs = coeff_num(); in TEST_P() local
278 tran_low_t *qcoeff_ref = coeff_ptr + n_coeffs; in TEST_P()
279 tran_low_t *dqcoeff_ref = qcoeff_ref + n_coeffs; in TEST_P()
281 tran_low_t *qcoeff = dqcoeff_ref + n_coeffs; in TEST_P()
282 tran_low_t *dqcoeff = qcoeff + n_coeffs; in TEST_P()
283 uint16_t *eob = (uint16_t *)(dqcoeff + n_coeffs); in TEST_P()
304 quant_ref_(coeff_ptr, n_coeffs, zbin, round_fp, quant_fp, quant_shift, in TEST_P()
311 quant_(coeff_ptr, n_coeffs, zbin, round_fp, quant_fp, quant_shift, qcoeff, in TEST_P()