Searched refs:outBuffFlushedSize (Results 1 – 2 of 2) sorted by relevance
2901 cctx->outBuffContentSize = cctx->outBuffFlushedSize = 0; in ZSTD_resetCStream_internal()3134 zcs->outBuffFlushedSize = 0; in ZSTD_compressStream_generic()3140 { size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; in ZSTD_compressStream_generic()3142 zcs->outBuff + zcs->outBuffFlushedSize, toFlush); in ZSTD_compressStream_generic()3146 zcs->outBuffFlushedSize += flushed; 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()
223 size_t outBuffFlushedSize; member