Searched defs:MIN_GET_BITS (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdhuff.c279 * On most machines MIN_GET_BITS should be 25 to allow the full 32-bit width
284 * be a win to set MIN_GET_BITS to the minimum value of 15. This reduces the
289 #define MIN_GET_BITS 15 /* minimum allowable value */ macro
291 #define MIN_GET_BITS (BIT_BUF_SIZE-7) macro
306 /* Attempt to load at least MIN_GET_BITS bits into get_buffer. */
311 while (bits_left < MIN_GET_BITS) {
381 get_buffer <<= MIN_GET_BITS - bits_left;
382 bits_left = MIN_GET_BITS;

Completed in 111 milliseconds