Lines Matching refs:inbuf
98 unsigned char *inbuf /*,*outbuf*/; member
129 bd->inbufCount = bd->fill(bd->inbuf, BZIP2_IOBUF_SIZE); in get_bits()
144 bd->inbufBits = (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++]; in get_bits()
387 (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++]; in get_next_block()
630 static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, long len, in start_bunzip() argument
648 bd->inbuf = inbuf; in start_bunzip()
689 unsigned char *inbuf; in bunzip2() local
699 inbuf = buf; in bunzip2()
701 inbuf = malloc(BZIP2_IOBUF_SIZE); in bunzip2()
702 if (!inbuf) { in bunzip2()
707 i = start_bunzip(&bd, inbuf, len, fill); in bunzip2()
740 free(inbuf); in bunzip2()