Searched refs:bi_buf (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.0-release/lib/libz/
H A Dtrees.c197 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
202 s->bi_buf |= (ush)value << s->bi_valid;
203 put_short(s, s->bi_buf);
204 s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
207 s->bi_buf |= (ush)value << s->bi_valid;
217 s->bi_buf |= (ush)val << s->bi_valid;\
218 put_short(s, s->bi_buf);\
219 s->bi_buf = (ush)val >> (Buf_size - s->bi_valid);\
222 s->bi_buf |
[all...]
H A Ddeflate.h52 /* size of bit buffer in bi_buf */
257 ush bi_buf; member in struct:internal_state
262 /* Number of valid bits in bi_buf. All bits above the last valid bit
H A Ddeflate.c480 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dtrees.c77 /* Number of bits used within bi_buf. (bi_buf might be implemented on
201 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
206 s->bi_buf |= (value << s->bi_valid);
207 put_short(s, s->bi_buf);
208 s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
211 s->bi_buf |= value << s->bi_valid;
221 s->bi_buf |= (val << s->bi_valid);\
222 put_short(s, s->bi_buf);\
[all...]
H A Ddeflate.h254 ush bi_buf; member in struct:internal_state
259 /* Number of valid bits in bi_buf. All bits above the last valid bit
H A Ddeflate.c417 strm->state->bi_buf = (ush)(value & ((1 << bits) - 1));
/freebsd-10.0-release/sys/net/
H A Dzlib.c511 ush bi_buf; member in struct:deflate_state
516 /* Number of valid bits in bi_buf. All bits above the last valid bit
1920 /* Number of bits used within bi_buf. (bi_buf might be implemented on
2038 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
2043 s->bi_buf |= (value << s->bi_valid);
2044 put_short(s, s->bi_buf);
2045 s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
2048 s->bi_buf |
[all...]

Completed in 99 milliseconds