Lines Matching refs:outbuf
522 static int INIT read_bunzip(struct bunzip_data *bd, char *outbuf, int len) in read_bunzip() argument
554 outbuf[gotcount++] = xcurrent; in read_bunzip()
681 unsigned char *outbuf, in bunzip2() argument
690 outbuf = malloc(BZIP2_IOBUF_SIZE); in bunzip2()
692 if (!outbuf) { in bunzip2()
708 i = read_bunzip(bd, outbuf, BZIP2_IOBUF_SIZE); in bunzip2()
712 outbuf += i; in bunzip2()
714 if (i != flush(outbuf, i)) { in bunzip2()
741 free(outbuf); in bunzip2()
749 unsigned char *outbuf, long olen, in __decompress() argument
753 return bunzip2(buf, len - 4, fill, flush, outbuf, pos, error); in __decompress()