Lines Matching refs:s
275 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);} argument
283 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD) argument
293 void ZLIB_INTERNAL _tr_init OF((deflate_state *s));
294 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
295 void ZLIB_INTERNAL _tr_flush_block OF((deflate_state *s, charf *buf,
297 void ZLIB_INTERNAL _tr_align OF((deflate_state *s));
298 void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf,
319 # define _tr_tally_lit(s, c, flush) \ argument
321 s->d_buf[s->last_lit] = 0; \
322 s->l_buf[s->last_lit++] = cc; \
323 s->dyn_ltree[cc].Freq++; \
324 flush = (s->last_lit == s->lit_bufsize-1); \
326 # define _tr_tally_dist(s, distance, length, flush) \ argument
329 s->d_buf[s->last_lit] = dist; \
330 s->l_buf[s->last_lit++] = len; \
332 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
333 s->dyn_dtree[d_code(dist)].Freq++; \
334 flush = (s->last_lit == s->lit_bufsize-1); \
337 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument
338 # define _tr_tally_dist(s, distance, length, flush) \ argument
339 flush = _tr_tally(s, distance, length)