Lines Matching refs:inbuf
97 unsigned char *inbuf /*,*outbuf*/; member
128 bd->inbufCount = bd->fill(bd->inbuf, BZIP2_IOBUF_SIZE); in get_bits()
143 bd->inbufBits = (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++]; in get_bits()
385 (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++]; in get_next_block()
628 static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, long len, in start_bunzip() argument
646 bd->inbuf = inbuf; in start_bunzip()
687 unsigned char *inbuf; in bunzip2() local
697 inbuf = buf; in bunzip2()
699 inbuf = malloc(BZIP2_IOBUF_SIZE); in bunzip2()
700 if (!inbuf) { in bunzip2()
705 i = start_bunzip(&bd, inbuf, len, fill); in bunzip2()
738 free(inbuf); in bunzip2()