Lines Matching defs:s_zstate
71 struct s_zstate { struct
72 FILE *zs_fp; /* File stream for I/O */
73 char zs_mode; /* r or w */
74 enum {
76 } zs_state; /* State of computation */
77 int zs_n_bits; /* Number of bits/code. */
78 int zs_maxbits; /* User settable max # bits/code. */
79 code_int zs_maxcode; /* Maximum code, given n_bits. */
80 code_int zs_maxmaxcode; /* Should NEVER generate this code. */
81 count_int zs_htab [HSIZE];
82 u_short zs_codetab [HSIZE];
83 code_int zs_hsize; /* For dynamic table sizing. */
84 code_int zs_free_ent; /* First unused entry. */
89 int zs_block_compress;
90 int zs_clear_flg;
91 long zs_ratio;
92 count_int zs_checkpoint;
93 int zs_offset;
94 long zs_in_count; /* Length of input. */
95 long zs_bytes_out; /* Length of compressed output. */
96 long zs_out_count; /* # of codes output (for debugging). */
97 char_type zs_buf[BITS];
98 union {
112 } u;