Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/zstd/examples/
H A Dmultiple_streaming_compression.c67 CHECK_ZSTD( ZSTD_CCtx_reset(ress.cctx, ZSTD_reset_session_only) ); in compressFile_orDie()
/f-stack/freebsd/contrib/zstd/lib/compress/
H A Dzstd_compress.c88 { size_t const err = ZSTD_CCtx_reset(cctx, ZSTD_reset_parameters); in ZSTD_initCCtx()
1077 size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset) in ZSTD_CCtx_reset() function
4003 FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); in ZSTD_resetCStream()
4018 FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); in ZSTD_initCStream_internal()
4040 FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); in ZSTD_initCStream_usingCDict_advanced()
4051 FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); in ZSTD_initCStream_usingCDict()
4171 ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); in ZSTD_compressStream_generic()
4244 ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); in ZSTD_compressStream_generic()
4274 ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); in ZSTD_compressStream_generic()
4455 ZSTD_CCtx_reset(cctx, ZSTD_reset_session_only); in ZSTD_compressStream2()
[all …]
/f-stack/freebsd/contrib/openzfs/module/zstd/include/
H A Dzstd_compat_wrapper.h175 #define ZSTD_CCtx_reset zfs_ZSTD_CCtx_reset macro
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.h509 ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset);
H A Dzstd.c13159 { size_t const err = ZSTD_CCtx_reset(cctx, ZSTD_reset_parameters); in ZSTD_initCCtx()
14046 size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset) in ZSTD_CCtx_reset() function
16765 FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); in ZSTD_resetCStream()
16780 FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); in ZSTD_initCStream_internal()
16802 FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); in ZSTD_initCStream_usingCDict_advanced()
16813 FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); in ZSTD_initCStream_usingCDict()
16927 ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); in ZSTD_compressStream_generic()
16981 ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); in ZSTD_compressStream_generic()
17010 ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); in ZSTD_compressStream_generic()
17116 ZSTD_CCtx_reset(cctx, ZSTD_reset_session_only); in ZSTD_compressStream2()
[all …]
/f-stack/freebsd/contrib/zstd/lib/
H A Dzstd.h505 ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset);
/f-stack/freebsd/contrib/zstd/programs/
H A Dbenchzstd.c171 ZSTD_CCtx_reset(ctx, ZSTD_reset_session_and_parameters); in BMK_initCCtx()
/f-stack/freebsd/contrib/zstd/
H A DCHANGELOG244 api : change : clarify ZSTD_CCtx_reset() vs ZSTD_CCtx_resetParameters(), by @terrelln