Lines Matching defs:s_zstate
84 struct s_zstate { struct
85 FILE *zs_fp; /* File stream for I/O */
86 char zs_mode; /* r or w */
87 enum {
89 } zs_state; /* State of computation */
90 int zs_n_bits; /* Number of bits/code. */
91 int zs_maxbits; /* User settable max # bits/code. */
92 code_int zs_maxcode; /* Maximum code, given n_bits. */
93 code_int zs_maxmaxcode; /* Should NEVER generate this code. */
94 count_int zs_htab [HSIZE];
95 u_short zs_codetab [HSIZE];
96 code_int zs_hsize; /* For dynamic table sizing. */
97 code_int zs_free_ent; /* First unused entry. */
102 int zs_block_compress;
103 int zs_clear_flg;
104 long zs_ratio;
128 static code_int getcode(struct s_zstate *zs); argument