Lines Matching defs:s_zstate
98 struct s_zstate { struct
99 FILE *zs_fp; /* File stream for I/O */
100 char zs_mode; /* r or w */
101 enum {
103 } zs_state; /* State of computation */
104 int zs_n_bits; /* Number of bits/code. */
105 int zs_maxbits; /* User settable max # bits/code. */
106 code_int zs_maxcode; /* Maximum code, given n_bits. */
107 code_int zs_maxmaxcode; /* Should NEVER generate this code. */
108 count_int zs_htab [HSIZE];
109 u_short zs_codetab [HSIZE];
110 code_int zs_hsize; /* For dynamic table sizing. */
111 code_int zs_free_ent; /* First unused entry. */
116 int zs_block_compress;
117 int zs_clear_flg;
118 long zs_ratio;
119 count_int zs_checkpoint;
120 int zs_offset;
121 long zs_in_count; /* Length of input. */
122 long zs_bytes_out; /* Length of compressed output. */
123 long zs_out_count; /* # of codes output (for debugging). */
124 char_type zs_buf[BITS];
125 union {
139 } u;