HomeSort by relevance Sort by last modified time
    Searched defs:PASS1_BITS (Results 1 - 10 of 10) sorted by null

  /external/jpeg/
jfdctint.c 66 * The outputs of the first pass are scaled up by PASS1_BITS bits so that
68 * require BITS_IN_JSAMPLE + PASS1_BITS + 3 bits; this fits in a 16-bit word
73 * have BITS_IN_JSAMPLE + CONST_BITS + PASS1_BITS <= 26. Error analysis
79 #define PASS1_BITS 2
82 #define PASS1_BITS 1 /* lose a little precision to avoid overflow */
151 /* furthermore, we scale the results by 2**PASS1_BITS. */
173 dataptr[0] = (DCTELEM) ((tmp10 + tmp11) << PASS1_BITS);
174 dataptr[4] = (DCTELEM) ((tmp10 - tmp11) << PASS1_BITS);
178 CONST_BITS-PASS1_BITS);
180 CONST_BITS-PASS1_BITS);
    [all...]
jidctfst.c 62 * factors have been incorporated. We represent them scaled up by PASS1_BITS,
64 * For 8-bit JSAMPLEs, we choose IFAST_SCALE_BITS = PASS1_BITS so as to
78 #define PASS1_BITS 2
81 #define PASS1_BITS 1 /* lose a little precision to avoid overflow */
132 DESCALE((coef)*(quantval), IFAST_SCALE_BITS-PASS1_BITS)
279 /* and also undo the PASS1_BITS scaling. */
296 JSAMPLE dcval = range_limit[IDESCALE(wsptr[0], PASS1_BITS+3)
347 outptr[0] = range_limit[IDESCALE(tmp0 + tmp7, PASS1_BITS+3)
349 outptr[7] = range_limit[IDESCALE(tmp0 - tmp7, PASS1_BITS+3)
351 outptr[1] = range_limit[IDESCALE(tmp1 + tmp6, PASS1_BITS+3
    [all...]
jidctint.c 66 * The outputs of the first pass are scaled up by PASS1_BITS bits so that
68 * require BITS_IN_JSAMPLE + PASS1_BITS + 3 bits; this fits in a 16-bit word
73 * have BITS_IN_JSAMPLE + CONST_BITS + PASS1_BITS <= 26. Error analysis
79 #define PASS1_BITS 2
82 #define PASS1_BITS 1 /* lose a little precision to avoid overflow */
166 /* furthermore, we scale the results by 2**PASS1_BITS. */
186 int dcval = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]) << PASS1_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);
    [all...]
jidctred.c 44 #define PASS1_BITS 2
47 #define PASS1_BITS 1 /* lose a little precision to avoid overflow */
146 int dcval = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]) << PASS1_BITS;
188 wsptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp2, CONST_BITS-PASS1_BITS+1);
189 wsptr[DCTSIZE*3] = (int) DESCALE(tmp10 - tmp2, CONST_BITS-PASS1_BITS+1);
190 wsptr[DCTSIZE*1] = (int) DESCALE(tmp12 + tmp0, CONST_BITS-PASS1_BITS+1);
191 wsptr[DCTSIZE*2] = (int) DESCALE(tmp12 - tmp0, CONST_BITS-PASS1_BITS+1);
205 JSAMPLE dcval = range_limit[(int) DESCALE((INT32) wsptr[0], PASS1_BITS+3)
248 CONST_BITS+PASS1_BITS+3+1)
251 CONST_BITS+PASS1_BITS+3+1
    [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 44 milliseconds