Lines Matching full:dist
307 int ZLIB_INTERNAL _tr_tally(deflate_state *s, unsigned dist, unsigned lc);
315 #define d_code(dist) \
316 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
317 /* Mapping from a distance to a distance code. dist is the distance - 1 and
343 ush dist = (ush)(distance); \
344 s->d_buf[s->sym_next] = dist; \
346 dist--; \
348 s->dyn_dtree[d_code(dist)].Freq++; \
362 ush dist = (ush)(distance); \
363 s->sym_buf[s->sym_next++] = (uch)dist; \
364 s->sym_buf[s->sym_next++] = (uch)(dist >> 8); \
366 dist--; \
368 s->dyn_dtree[d_code(dist)].Freq++; \