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