Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c1324 int const endFrame = (endOp == ZSTD_e_end); in ZSTDMT_createCompressionJob()
1376 …assert(endOp == ZSTD_e_end); /* only possible case : need to end the frame with an empty last blo… in ZSTDMT_createCompressionJob()
1488 …if (end == ZSTD_e_end) return !mtctx->frameEnded; /* for ZSTD_e_end, question becomes : is frame … in ZSTDMT_flushProduced()
1785 if ((input->pos < input->size) && (endOp == ZSTD_e_end)) { in ZSTDMT_compressStream_generic()
1799 …|| ((endOp == ZSTD_e_end) && (!mtctx->frameEnded)) ) { /* must finish the frame with a zero-size… in ZSTDMT_compressStream_generic()
H A Dzstd_compress.c4150 assert((U32)flushMode <= (U32)ZSTD_e_end); in ZSTD_compressStream_generic()
4159 if ( (flushMode == ZSTD_e_end) in ZSTD_compressStream_generic()
4208 unsigned const lastBlock = (flushMode == ZSTD_e_end) && (ip==iend); in ZSTD_compressStream_generic()
4227 assert(flushMode == ZSTD_e_end /* Already validated */); in ZSTD_compressStream_generic()
4335 if (endOp != ZSTD_e_end) in ZSTD_checkBufferStability()
4357 … if (endOp == ZSTD_e_end) cctx->pledgedSrcSizePlusOne = inSize + 1; /* auto-fix pledgedSrcSize */ in ZSTD_CCtx_init_compressStream2()
4430 RETURN_ERROR_IF((U32)endOp > (U32)ZSTD_e_end, parameter_outOfBound, "invalid endDirective"); in ZSTD_compressStream2()
4454 || (endOp == ZSTD_e_end && flushMin == 0) ) { /* compression completed */ in ZSTD_compressStream2()
4467 assert(endOp == ZSTD_e_flush || endOp == ZSTD_e_end); in ZSTD_compressStream2()
4521 ZSTD_e_end); in ZSTD_compress2()
[all …]
/dragonfly/contrib/zstd/programs/
H A Dfileio.c1323 directive = ZSTD_e_end; in FIO_compressZstdFrame()
1327 || (directive == ZSTD_e_end && stillToFlush != 0) ) { in FIO_compressZstdFrame()
1472 } while (directive != ZSTD_e_end); in FIO_compressZstdFrame()
/dragonfly/contrib/zstd/lib/
H A Dzstd.h677 ZSTD_e_end=2 /* flush any remaining data _and_ close current frame. enumerator
/dragonfly/contrib/zstd/
H A DCHANGELOG159 api: Make ZSTD_e_flush and ZSTD_e_end block for maximum forward progress