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

/linux-master/lib/zlib_deflate/
H A Ddefutil.h232 ush bi_buf; member in struct:deflate_state
237 /* Number of valid bits in bi_buf. All bits above the last valid bit
317 put_short(s, s->bi_buf);
318 s->bi_buf = 0;
321 put_byte(s, (Byte)s->bi_buf);
322 s->bi_buf >>= 8;
333 put_short(s, s->bi_buf);
335 put_byte(s, (Byte)s->bi_buf);
337 s->bi_buf = 0;
352 /* Number of bits used within bi_buf
[all...]
H A Ddeftree.c258 s->bi_buf = 0;
/linux-master/lib/zlib_dfltcc/
H A Ddfltcc_deflate.c237 *strm->next_out = (Byte)state->bi_buf;
269 state->bi_buf = 0; /* Avoid accessing next_out */
271 state->bi_buf = *strm->next_out & ((1 << state->bi_valid) - 1);

Completed in 118 milliseconds