Home | History | Annotate | Download | only in jpeg

Lines Matching refs:DESCALE

258     wsptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp3, CONST_BITS-PASS1_BITS);
259 wsptr[DCTSIZE*7] = (int) DESCALE(tmp10 - tmp3, CONST_BITS-PASS1_BITS);
260 wsptr[DCTSIZE*1] = (int) DESCALE(tmp11 + tmp2, CONST_BITS-PASS1_BITS);
261 wsptr[DCTSIZE*6] = (int) DESCALE(tmp11 - tmp2, CONST_BITS-PASS1_BITS);
262 wsptr[DCTSIZE*2] = (int) DESCALE(tmp12 + tmp1, CONST_BITS-PASS1_BITS);
263 wsptr[DCTSIZE*5] = (int) DESCALE(tmp12 - tmp1, CONST_BITS-PASS1_BITS);
264 wsptr[DCTSIZE*3] = (int) DESCALE(tmp13 + tmp0, CONST_BITS-PASS1_BITS);
265 wsptr[DCTSIZE*4] = (int) DESCALE(tmp13 - tmp0, CONST_BITS-PASS1_BITS);
273 /* Note that we must descale the results by a factor of 8 == 2**3, */
291 JSAMPLE dcval = range_limit[(int) DESCALE((INT32) wsptr[0], PASS1_BITS+3)
360 outptr[0] = range_limit[(int) DESCALE(tmp10 + tmp3,
363 outptr[7] = range_limit[(int) DESCALE(tmp10 - tmp3,
366 outptr[1] = range_limit[(int) DESCALE(tmp11 + tmp2,
369 outptr[6] = range_limit[(int) DESCALE(tmp11 - tmp2,
372 outptr[2] = range_limit[(int) DESCALE(tmp12 + tmp1,
375 outptr[5] = range_limit[(int) DESCALE(tmp12 - tmp1,
378 outptr[3] = range_limit[(int) DESCALE(tmp13 + tmp0,
381 outptr[4] = range_limit[(int) DESCALE(tmp13 - tmp0,