Lines Matching refs:dist
309 int ZLIB_INTERNAL _tr_tally(deflate_state *s, unsigned dist, unsigned lc);
317 #define d_code(dist) \
318 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
319 /* Mapping from a distance to a distance code. dist is the distance - 1 and
345 ush dist = (ush)(distance); \
346 s->d_buf[s->sym_next] = dist; \
348 dist--; \
350 s->dyn_dtree[d_code(dist)].Freq++; \
364 ush dist = (ush)(distance); \
365 s->sym_buf[s->sym_next++] = (uch)dist; \
366 s->sym_buf[s->sym_next++] = (uch)(dist >> 8); \
368 dist--; \
370 s->dyn_dtree[d_code(dist)].Freq++; \