Lines Matching defs:outbuf
98 unsigned char *inbuf /*,*outbuf*/;
518 data are written to outbuf. Return value is number of bytes written or
519 error (all errors are negative numbers). If out_fd!=-1, outbuf and len
523 static int INIT read_bunzip(struct bunzip_data *bd, char *outbuf, int len)
555 outbuf[gotcount++] = xcurrent;
682 unsigned char *outbuf,
691 outbuf = malloc(BZIP2_IOBUF_SIZE);
693 if (!outbuf) {
709 i = read_bunzip(bd, outbuf, BZIP2_IOBUF_SIZE);
713 outbuf += i;
715 if (i != flush(outbuf, i)) {
742 free(outbuf);
750 unsigned char *outbuf, long olen,
754 return bunzip2(buf, len - 4, fill, flush, outbuf, pos, error);