Lines Matching refs:outbuf
524 static int INIT read_bunzip(struct bunzip_data *bd, char *outbuf, int len) in read_bunzip() argument
556 outbuf[gotcount++] = xcurrent; in read_bunzip()
683 unsigned char *outbuf, in bunzip2() argument
692 outbuf = malloc(BZIP2_IOBUF_SIZE); in bunzip2()
694 if (!outbuf) { in bunzip2()
710 i = read_bunzip(bd, outbuf, BZIP2_IOBUF_SIZE); in bunzip2()
714 outbuf += i; in bunzip2()
716 if (i != flush(outbuf, i)) { in bunzip2()
743 free(outbuf); in bunzip2()
751 unsigned char *outbuf, long olen, in __decompress() argument
755 return bunzip2(buf, len - 4, fill, flush, outbuf, pos, error); in __decompress()