Lines Matching defs:divisors
28 /* The actual post-DCT divisors --- not identical to the quant table
32 DCTELEM * divisors[NUM_QUANT_TBLS];
74 DCTELEM * divisors = fdct->divisors[compptr->quant_tbl_no];
90 qval = divisors[i];
137 FAST_FLOAT * divisors = fdct->float_divisors[compptr->quant_tbl_no];
154 temp = workspace[i] * divisors[i];
355 /* Compute divisors for this quant table */
360 /* For LL&M IDCT method, divisors are equal to raw quantization
363 if (fdct->divisors[qtblno] == NULL) {
364 fdct->divisors[qtblno] = (DCTELEM *)
368 dtbl = fdct->divisors[qtblno];
378 /* For AA&N IDCT method, divisors are equal to quantization
398 if (fdct->divisors[qtblno] == NULL) {
399 fdct->divisors[qtblno] = (DCTELEM *)
403 dtbl = fdct->divisors[qtblno];
417 /* For float AA&N IDCT method, divisors are equal to quantization
477 fdct->divisors[i] = NULL;