Home | History | Annotate | Download | only in jpeg-6b

Lines Matching refs:CONST_BITS

59  * CONST_BITS bits of precision in the constants).  After doing a
62 * cheaply as a right shift of CONST_BITS bits. We postpone shifting
73 * have BITS_IN_JSAMPLE + CONST_BITS + PASS1_BITS <= 26. Error analysis
78 #define CONST_BITS 13
81 #define CONST_BITS 13
88 * If you change CONST_BITS you may want to add appropriate values.
92 #if CONST_BITS == 13
216 tmp0 = (z2 + z3) << CONST_BITS;
217 tmp1 = (z2 - z3) << CONST_BITS;
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);
318 tmp0 = ((INT32) wsptr[0] + (INT32) wsptr[4]) << CONST_BITS;
319 tmp1 = ((INT32) wsptr[0] - (INT32) wsptr[4]) << CONST_BITS;
361 CONST_BITS+PASS1_BITS+3)
364 CONST_BITS+PASS1_BITS+3)
367 CONST_BITS+PASS1_BITS+3)
370 CONST_BITS+PASS1_BITS+3)
373 CONST_BITS+PASS1_BITS+3)
376 CONST_BITS+PASS1_BITS+3)
379 CONST_BITS+PASS1_BITS+3)
382 CONST_BITS+PASS1_BITS+3)