Lines Matching refs:dcval
149 int dcval = LEFT_SHIFT(DEQUANTIZE(inptr[DCTSIZE * 0], variable
152 wsptr[DCTSIZE * 0] = dcval;
153 wsptr[DCTSIZE * 1] = dcval;
154 wsptr[DCTSIZE * 2] = dcval;
155 wsptr[DCTSIZE * 3] = dcval;
213 JSAMPLE dcval = range_limit[(int)DESCALE((JLONG)wsptr[0], variable
216 outptr[0] = dcval;
217 outptr[1] = dcval;
218 outptr[2] = dcval;
219 outptr[3] = dcval;
305 int dcval = LEFT_SHIFT(DEQUANTIZE(inptr[DCTSIZE * 0], in jpeg_idct_2x2() local
308 wsptr[DCTSIZE * 0] = dcval; in jpeg_idct_2x2()
309 wsptr[DCTSIZE * 1] = dcval; in jpeg_idct_2x2()
348 JSAMPLE dcval = range_limit[(int)DESCALE((JLONG)wsptr[0], in jpeg_idct_2x2() local
351 outptr[0] = dcval; in jpeg_idct_2x2()
352 outptr[1] = dcval; in jpeg_idct_2x2()
394 int dcval; in jpeg_idct_1x1() local
403 dcval = DEQUANTIZE(coef_block[0], quantptr[0]); in jpeg_idct_1x1()
404 dcval = (int)DESCALE((JLONG)dcval, 3); in jpeg_idct_1x1()
406 output_buf[0][output_col] = range_limit[dcval & RANGE_MASK]; in jpeg_idct_1x1()