Lines Matching defs:zs

143 #define	fp		zs->zs_fp
144 #define zmode zs->zs_mode
145 #define state zs->zs_state
146 #define n_bits zs->zs_n_bits
147 #define maxbits zs->zs_maxbits
148 #define maxcode zs->zs_maxcode
149 #define maxmaxcode zs->zs_maxmaxcode
150 #define htab zs->zs_htab
151 #define codetab zs->zs_codetab
152 #define hsize zs->zs_hsize
153 #define free_ent zs->zs_free_ent
154 #define block_compress zs->zs_block_compress
155 #define clear_flg zs->zs_clear_flg
156 #define ratio zs->zs_ratio
157 #define checkpoint zs->zs_checkpoint
158 #define offset zs->zs_offset
159 #define in_count zs->zs_in_count
160 #define bytes_out zs->zs_bytes_out
161 #define out_count zs->zs_out_count
162 #define buf zs->zs_buf
163 #define fcode zs->u.w.zs_fcode
164 #define hsize_reg zs->u.w.zs_hsize_reg
165 #define ent zs->u.w.zs_ent
166 #define hshift zs->u.w.zs_hshift
167 #define stackp zs->u.r.zs_stackp
168 #define finchar zs->u.r.zs_finchar
169 #define code zs->u.r.zs_code
170 #define oldcode zs->u.r.zs_oldcode
171 #define incode zs->u.r.zs_incode
172 #define roffset zs->u.r.zs_roffset
173 #define size zs->u.r.zs_size
174 #define gbuf zs->u.r.zs_gbuf
240 struct s_zstate *zs;
248 zs = cookie;
307 nomatch: if (output(zs, (code_int) ent) == -1)
316 if (cl_block(zs) == -1)
326 struct s_zstate *zs;
329 zs = cookie;
331 if (output(zs, (code_int) ent) == -1) {
333 free(zs);
337 if (output(zs, (code_int) - 1) == -1) {
339 free(zs);
344 free(zs);
369 output(struct s_zstate *zs, code_int ocode)
459 struct s_zstate *zs;
465 zs = cookie;
503 while ((code = getcode(zs)) > -1) {
568 getcode(struct s_zstate *zs)
626 cl_block(struct s_zstate *zs) /* Table clear for block compress. */
647 if (output(zs, (code_int) CLEAR) == -1)
656 struct s_zstate *zs;
664 if ((zs = calloc(1, sizeof(struct s_zstate))) == NULL)
686 free(zs);
692 return (funopen(zs, zread, NULL, NULL, zclose));
695 return (funopen(zs, NULL, zwrite, NULL, zclose));