Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/lib/zstd/
H A Dcompress.c2963 size_t outBuffFlushedSize; member
3039 zcs->outBuffContentSize = zcs->outBuffFlushedSize = 0; in ZSTD_resetCStream_internal()
3182 zcs->outBuffFlushedSize = 0; in ZSTD_compressStream_generic()
3188 size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; in ZSTD_compressStream_generic()
3189 size_t const flushed = ZSTD_limitCopy(op, oend - op, zcs->outBuff + zcs->outBuffFlushedSize, toFlush); in ZSTD_compressStream_generic()
3191 zcs->outBuffFlushedSize += flushed; in ZSTD_compressStream_generic()
3196 zcs->outBuffContentSize = zcs->outBuffFlushedSize = 0; in ZSTD_compressStream_generic()
3248 return zcs->outBuffContentSize - zcs->outBuffFlushedSize; /* remaining to flush */ in ZSTD_flushStream()
3266 size_t const remainingToFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; in ZSTD_endStream()
3280 size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; in ZSTD_endStream()
[all...]
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_compress.c5333 zcs->outBuffFlushedSize = 0; in ZSTD_compressStream_generic()
5340 { size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; in ZSTD_compressStream_generic()
5342 zcs->outBuff + zcs->outBuffFlushedSize, toFlush); in ZSTD_compressStream_generic()
5347 zcs->outBuffFlushedSize += flushed; in ZSTD_compressStream_generic()
5354 zcs->outBuffContentSize = zcs->outBuffFlushedSize = 0; in ZSTD_compressStream_generic()
5473 cctx->outBuffContentSize = cctx->outBuffFlushedSize = 0; in ZSTD_CCtx_init_compressStream2()
5504 return cctx->outBuffContentSize - cctx->outBuffFlushedSize; /* remaining to flush */ in ZSTD_compressStream2()
H A Dzstd_compress_internal.h401 size_t outBuffFlushedSize; member

Completed in 19 milliseconds