Searched refs:ZSTD_compressCCtx (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/sys/contrib/zstd/examples/
H A Dmultiple_simple_compression.c74 size_t const cSize = ZSTD_compressCCtx(ress.cctx, ress.cBuffer, ress.cBufferSize, ress.fBuffer, fSize, 1);
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/include/
H A Dzstd_compat_wrapper.h264 #define ZSTD_compressCCtx zfs_ZSTD_compressCCtx macro
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.h169 * such as ZSTD_compress(), ZSTD_compressCCtx() ZSTD_compress_usingDict() or ZSTD_compress_usingCDict().
224 /*! ZSTD_compressCCtx() :
232 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx,
266 * __They do not apply to "simple" one-shot variants such as ZSTD_compressCCtx()__ .
512 * Behave the same as ZSTD_compressCCtx(), but compression parameters are set using the advanced API.
H A Dzstd.c3229 * such as ZSTD_compress(), ZSTD_compressCCtx() ZSTD_compress_usingDict() or ZSTD_compress_usingCDict().
3284 /*! ZSTD_compressCCtx() :
3292 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx,
3326 * __They do not apply to "simple" one-shot variants such as ZSTD_compressCCtx()__ .
3572 * Behave the same as ZSTD_compressCCtx(), but compression parameters are set using the advanced API.
16381 size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, function
16386 DEBUGLOG(4, "ZSTD_compressCCtx (srcSize=%u)", (unsigned)srcSize);
16398 result = ZSTD_compressCCtx(&ctxBody, dst, dstCapacity, src, srcSize, compressionLevel);
[all...]
/freebsd-13-stable/sys/contrib/zstd/lib/
H A Dzstd.h149 * such as ZSTD_compress(), ZSTD_compressCCtx() ZSTD_compress_usingDict() or ZSTD_compress_usingCDict().
204 /*! ZSTD_compressCCtx() :
212 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx,
246 * __They do not apply to "simple" one-shot variants such as ZSTD_compressCCtx()__ .
508 * Behave the same as ZSTD_compressCCtx(), but compression parameters are set using the advanced API.
/freebsd-13-stable/sys/contrib/zstd/zlibWrapper/examples/
H A Dzwrapbench.c251 rSize = ZSTD_compressCCtx (ctx,
/freebsd-13-stable/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c39 * Note that functions with explicit context such as ZSTD_compressCCtx() are unaffected.
3558 size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, function
3563 DEBUGLOG(4, "ZSTD_compressCCtx (srcSize=%u)", (unsigned)srcSize);
3576 result = ZSTD_compressCCtx(cctx, dst, dstCapacity, src, srcSize, compressionLevel);
3581 result = ZSTD_compressCCtx(&ctxBody, dst, dstCapacity, src, srcSize, compressionLevel);

Completed in 220 milliseconds