Lines Matching refs:code_int
40 typedef INT16 code_int; /* must hold -1 .. 2**MAX_LZW_BITS */ typedef
42 #define LZW_TABLE_SIZE ((code_int)1 << MAX_LZW_BITS)
48 #define MAXCODE(n_bits) (((code_int)1 << (n_bits)) - 1)
78 code_int maxcode; /* maximum code, given n_bits */
84 code_int waiting_code; /* symbol not yet output; may be extendable */
88 code_int ClearCode; /* clear code (doesn't change) */
89 code_int EOFCode; /* EOF code (ditto) */
90 code_int free_code; /* LZW: first not-yet-used symbol code */
91 code_int code_counter; /* not LZW: counts output symbols */
94 code_int *hash_code; /* => hash table of symbol codes */
136 output(gif_dest_ptr dinfo, code_int code) in output()
172 MEMZERO(dinfo->hash_code, HSIZE * sizeof(code_int)); in clear_hash()
195 dinfo->ClearCode = ((code_int) 1 << (i_bits - 1)); in compress_init()
363 code_int c; in put_LZW_pixel_rows()
371 c = (code_int)(*ptr++); in put_LZW_pixel_rows()
464 code_int c; in put_raw_pixel_rows()
468 c = (code_int)(*ptr++); in put_raw_pixel_rows()
564 dest->hash_code = (code_int *) in jinit_write_gif()
566 HSIZE * sizeof(code_int)); in jinit_write_gif()