Lines Matching refs:outbuf
523 static int INIT read_bunzip(struct bunzip_data *bd, char *outbuf, int len) in read_bunzip() argument
555 outbuf[gotcount++] = xcurrent; in read_bunzip()
682 unsigned char *outbuf, in bunzip2() argument
691 outbuf = malloc(BZIP2_IOBUF_SIZE); in bunzip2()
693 if (!outbuf) { in bunzip2()
709 i = read_bunzip(bd, outbuf, BZIP2_IOBUF_SIZE); in bunzip2()
713 outbuf += i; in bunzip2()
715 if (i != flush(outbuf, i)) { in bunzip2()
742 free(outbuf); in bunzip2()
750 unsigned char *outbuf, long olen, in __decompress() argument
754 return bunzip2(buf, len - 4, fill, flush, outbuf, pos, error); in __decompress()