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()
386 (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++]; in get_next_block()
629 static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, long len, in start_bunzip() argument
647 bd->inbuf = inbuf; in start_bunzip()
688 unsigned char *inbuf; in bunzip2() local
698 inbuf = buf; in bunzip2()
700 inbuf = malloc(BZIP2_IOBUF_SIZE); in bunzip2()
701 if (!inbuf) { in bunzip2()
706 i = start_bunzip(&bd, inbuf, len, fill); in bunzip2()
739 free(inbuf); in bunzip2()