Home
last modified time | relevance | path

Searched refs:sym_buf (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/contrib/zlib/
H A Ddeflate.h230 uchf *sym_buf; /* buffer for distances and literals/lengths */ member
353 s->sym_buf[s->sym_next++] = 0; \
354 s->sym_buf[s->sym_next++] = 0; \
355 s->sym_buf[s->sym_next++] = cc; \
362 s->sym_buf[s->sym_next++] = (uch)dist; \
363 s->sym_buf[s->sym_next++] = (uch)(dist >> 8); \
364 s->sym_buf[s->sym_next++] = len; \
H A Dtrees.c911 dist = s->sym_buf[sx++] & 0xff; in compress_block()
912 dist += (unsigned)(s->sym_buf[sx++] & 0xff) << 8; in compress_block()
913 lc = s->sym_buf[sx++]; in compress_block()
1098 s->sym_buf[s->sym_next++] = (uch)dist;
1099 s->sym_buf[s->sym_next++] = (uch)(dist >> 8);
1100 s->sym_buf[s->sym_next++] = (uch)lc;
H A Ddeflate.c511 s->sym_buf = s->pending_buf + s->lit_bufsize; in deflateInit2_()
735 s->sym_buf < s->pending_out + ((Buf_size + 7) >> 3)) in deflatePrime()
1327 ds->sym_buf = ds->pending_buf + ds->lit_bufsize; in deflateCopy()