Lines Matching refs:bunzip_data
92 struct bunzip_data {
116 static unsigned int INIT get_bits(struct bunzip_data *bd, char bits_wanted)
156 static int INIT get_next_block(struct bunzip_data *bd)
524 static int INIT read_bunzip(struct bunzip_data *bd, char *outbuf, int len)
630 static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, long len,
633 struct bunzip_data *bd;
640 i = sizeof(struct bunzip_data);
642 /* Allocate bunzip_data. Most fields initialize to zero. */
646 memset(bd, 0, sizeof(struct bunzip_data));
687 struct bunzip_data *bd;