Lines Matching defs:outbuf
351 ZSTD_outBuffer outbuf;
360 outbuf.pos = 0;
361 outbuf.dst = cc->cbuf->cdata;
362 outbuf.size = dst_size;
364 ret = ZSTD_compressStream(stream, &outbuf, &inbuf);
372 ret = ZSTD_endStream(stream, &outbuf);
387 cc->clen = outbuf.pos;
432 ZSTD_outBuffer outbuf;
439 outbuf.pos = 0;
440 outbuf.dst = dic->rbuf;
441 outbuf.size = dic->rlen;
443 ret = ZSTD_decompressStream(stream, &outbuf, &inbuf);
451 if (dic->rlen != outbuf.pos) {