Lines Matching refs:dist
289 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
296 #define d_code(dist) \
297 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
298 /* Mapping from a distance to a distance code. dist is the distance - 1 and
324 ush dist = (ush)(distance); \
325 s->sym_buf[s->sym_next++] = dist; \
326 s->sym_buf[s->sym_next++] = dist >> 8; \
328 dist--; \
330 s->dyn_dtree[d_code(dist)].Freq++; \