Home
last modified time | relevance | path

Searched refs:MAX_LZW_BITS (Results 1 – 2 of 2) sorted by relevance

/external/libjpeg-turbo/
Dwrgif.c38 #define MAX_LZW_BITS 12 /* maximum LZW code size (4096 symbols) */ macro
42 #define LZW_TABLE_SIZE ((code_int)1 << MAX_LZW_BITS)
156 if (dinfo->n_bits == MAX_LZW_BITS) in output()
383 i = ((hash_int)c << (MAX_LZW_BITS - 8)) + dest->waiting_code; in put_LZW_pixel_rows()
Drdgif.c57 #define MAX_LZW_BITS 12 /* maximum LZW code size */ macro
58 #define LZW_TABLE_SIZE (1 << MAX_LZW_BITS) /* # of possible LZW symbols */
333 sinfo->code_size < MAX_LZW_BITS) { in LZWReadByte()