Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Dcompress.c2963 size_t outBuffFlushedSize; member
3039 zcs->outBuffContentSize = zcs->outBuffFlushedSize = 0; in ZSTD_resetCStream_internal()
3182 zcs->outBuffFlushedSize = 0; in ZSTD_compressStream_generic()
3187 size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; in ZSTD_compressStream_generic()
3188 …size_t const flushed = ZSTD_limitCopy(op, oend - op, zcs->outBuff + zcs->outBuffFlushedSize, toFlu… in ZSTD_compressStream_generic()
3190 zcs->outBuffFlushedSize += flushed; in ZSTD_compressStream_generic()
3195 zcs->outBuffContentSize = zcs->outBuffFlushedSize = 0; in ZSTD_compressStream_generic()
3247 return zcs->outBuffContentSize - zcs->outBuffFlushedSize; /* remaining to flush */ in ZSTD_flushStream()
3265 size_t const remainingToFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; in ZSTD_endStream()
3279 size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; in ZSTD_endStream()
[all …]