Searched refs:ZSTD_compressCCtx (Results 1 - 5 of 5) sorted by relevance
/kernel/linux/linux-5.10/crypto/ |
H A D | zstd.c | 157 out_len = ZSTD_compressCCtx(zctx->cctx, dst, *dlen, src, slen, params); in __zstd_compress()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | zstd.h | 243 * ZSTD_compressCCtx() - compress src into dst 256 size_t ZSTD_compressCCtx(ZSTD_CCtx *ctx, void *dst, size_t dstCapacity,
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | zstd_lib.h | 141 * such as ZSTD_compress(), ZSTD_compressCCtx() ZSTD_compress_usingDict() or ZSTD_compress_usingCDict(). 197 /*! ZSTD_compressCCtx() : 205 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, 239 * __They do not apply to "simple" one-shot variants such as ZSTD_compressCCtx()__ . 504 * Behave the same as ZSTD_compressCCtx(), but compression parameters are set using the advanced API.
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | compress.c | 2831 size_t ZSTD_compressCCtx(ZSTD_CCtx *ctx, void *dst, size_t dstCapacity, const void *src, size_t srcSize, ZSTD_parameters params) in ZSTD_compressCCtx() function 3451 EXPORT_SYMBOL(ZSTD_compressCCtx); variable
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress.c | 38 * Note that functions with explicit context such as ZSTD_compressCCtx() are unaffected. 4612 size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, in ZSTD_compressCCtx() function 4617 DEBUGLOG(4, "ZSTD_compressCCtx (srcSize=%u)", (unsigned)srcSize); in ZSTD_compressCCtx() 4629 result = ZSTD_compressCCtx(cctx, dst, dstCapacity, src, srcSize, compressionLevel); in ZSTD_compress()
|
Completed in 24 milliseconds