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