Home
last modified time | relevance | path

Searched refs:outBuffContentSize (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c2901 cctx->outBuffContentSize = cctx->outBuffFlushedSize = 0; in ZSTD_resetCStream_internal()
3133 zcs->outBuffContentSize = cSize; in ZSTD_compressStream_generic()
3140 { size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; in ZSTD_compressStream_generic()
3153 zcs->outBuffContentSize = zcs->outBuffFlushedSize = 0; in ZSTD_compressStream_generic()
3261 return cctx->outBuffContentSize - cctx->outBuffFlushedSize; /* remaining to flush */ in ZSTD_compress_generic()
3289 return zcs->outBuffContentSize - zcs->outBuffFlushedSize; /* remaining to flush */ in ZSTD_flushStream()
3300 …size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize + lastBlockSize + checksu… in ZSTD_endStream()
H A Dzstd_compress_internal.h222 size_t outBuffContentSize; member