Lines Matching defs:bb
148 struct bitbuf *bb = xzalloc(sizeof(struct bitbuf)+size); in bitbuf_init() local
157 void bitbuf_skip(struct bitbuf *bb, int bits) in bitbuf_skip()
170 static inline int bitbuf_bit(struct bitbuf *bb) in bitbuf_bit()
183 unsigned bitbuf_get(struct bitbuf *bb, int bits) in bitbuf_get()
206 void bitbuf_flush(struct bitbuf *bb) in bitbuf_flush()
215 void bitbuf_put(struct bitbuf *bb, int data, int len) in bitbuf_put()
279 static unsigned huff_and_puff(struct bitbuf *bb, struct huff *huff) in huff_and_puff()
296 static void inflate(struct bitbuf *bb) in inflate()
417 static void deflate(struct bitbuf *bb) in deflate()
495 static int is_gzip(struct bitbuf *bb) in is_gzip()
526 struct bitbuf *bb = bitbuf_init(1, sizeof(toybuf)); in do_gzip() local
554 struct bitbuf *bb = bitbuf_init(fd, sizeof(toybuf)); in do_zcat() local