Lines Matching refs:dcval
146 int dcval = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]) << PASS1_BITS; variable
148 wsptr[DCTSIZE*0] = dcval;
149 wsptr[DCTSIZE*1] = dcval;
150 wsptr[DCTSIZE*2] = dcval;
151 wsptr[DCTSIZE*3] = dcval;
205 JSAMPLE dcval = range_limit[(int) DESCALE((INT32) wsptr[0], PASS1_BITS+3) variable
208 outptr[0] = dcval;
209 outptr[1] = dcval;
210 outptr[2] = dcval;
211 outptr[3] = dcval;
297 int dcval = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]) << PASS1_BITS; in jpeg_idct_2x2() local
299 wsptr[DCTSIZE*0] = dcval; in jpeg_idct_2x2()
300 wsptr[DCTSIZE*1] = dcval; in jpeg_idct_2x2()
337 JSAMPLE dcval = range_limit[(int) DESCALE((INT32) wsptr[0], PASS1_BITS+3) in jpeg_idct_2x2() local
340 outptr[0] = dcval; in jpeg_idct_2x2()
341 outptr[1] = dcval; in jpeg_idct_2x2()
383 int dcval; in jpeg_idct_1x1() local
392 dcval = DEQUANTIZE(coef_block[0], quantptr[0]); in jpeg_idct_1x1()
393 dcval = (int) DESCALE((INT32) dcval, 3); in jpeg_idct_1x1()
395 output_buf[0][output_col] = range_limit[dcval & RANGE_MASK]; in jpeg_idct_1x1()