Lines Matching refs:quantptr
128 ISLOW_MULT_TYPE *quantptr; variable
139 quantptr = (ISLOW_MULT_TYPE *)compptr->dct_table;
141 for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) {
150 quantptr[DCTSIZE * 0]), PASS1_BITS);
162 tmp0 = DEQUANTIZE(inptr[DCTSIZE * 0], quantptr[DCTSIZE * 0]);
165 z2 = DEQUANTIZE(inptr[DCTSIZE * 2], quantptr[DCTSIZE * 2]);
166 z3 = DEQUANTIZE(inptr[DCTSIZE * 6], quantptr[DCTSIZE * 6]);
175 z1 = DEQUANTIZE(inptr[DCTSIZE * 7], quantptr[DCTSIZE * 7]);
176 z2 = DEQUANTIZE(inptr[DCTSIZE * 5], quantptr[DCTSIZE * 5]);
177 z3 = DEQUANTIZE(inptr[DCTSIZE * 3], quantptr[DCTSIZE * 3]);
178 z4 = DEQUANTIZE(inptr[DCTSIZE * 1], quantptr[DCTSIZE * 1]);
285 ISLOW_MULT_TYPE *quantptr; in jpeg_idct_2x2() local
296 quantptr = (ISLOW_MULT_TYPE *)compptr->dct_table; in jpeg_idct_2x2()
298 for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) { in jpeg_idct_2x2()
306 quantptr[DCTSIZE * 0]), PASS1_BITS); in jpeg_idct_2x2()
316 z1 = DEQUANTIZE(inptr[DCTSIZE * 0], quantptr[DCTSIZE * 0]); in jpeg_idct_2x2()
321 z1 = DEQUANTIZE(inptr[DCTSIZE * 7], quantptr[DCTSIZE * 7]); in jpeg_idct_2x2()
323 z1 = DEQUANTIZE(inptr[DCTSIZE * 5], quantptr[DCTSIZE * 5]); in jpeg_idct_2x2()
325 z1 = DEQUANTIZE(inptr[DCTSIZE * 3], quantptr[DCTSIZE * 3]); in jpeg_idct_2x2()
327 z1 = DEQUANTIZE(inptr[DCTSIZE * 1], quantptr[DCTSIZE * 1]); in jpeg_idct_2x2()
395 ISLOW_MULT_TYPE *quantptr; in jpeg_idct_1x1() local
402 quantptr = (ISLOW_MULT_TYPE *)compptr->dct_table; in jpeg_idct_1x1() local
403 dcval = DEQUANTIZE(coef_block[0], quantptr[0]); in jpeg_idct_1x1()