Lines Matching defs:deflate_state
57047 struct deflate_state { struct
57048 z_streamp strm;
57049 int status;
57050 Byte *pending_buf;
57051 ulg pending_buf_size;
57052 Byte *pending_out;
57053 int pending;
57054 int noheader;
57055 Byte data_type;
57056 Byte method;
57057 int last_flush;
57058 uInt w_size;
57059 uInt w_bits;
57060 uInt w_mask;
57061 Byte *window;
57062 ulg window_size;
57063 Pos *prev;
57064 Pos *head;
57065 uInt ins_h;
57066 uInt hash_size;
57067 uInt hash_bits;
57068 uInt hash_mask;
57069 uInt hash_shift;
57070 long int block_start;
57071 uInt match_length;
57072 IPos prev_match;
57073 int match_available;
57074 uInt strstart;
57075 uInt match_start;
57076 uInt lookahead;
57077 uInt prev_length;
57078 uInt max_chain_length;
57079 uInt max_lazy_match;
57080 int level;
57081 int strategy;
57082 uInt good_match;
57083 int nice_match;
57084 struct ct_data_s dyn_ltree[573];
57108 typedef struct deflate_state deflate_state; argument