Searched refs:ZSTD_CCtx (Results 1 - 8 of 8) sorted by relevance

/linux-master/lib/zstd/compress/
H A Dzstd_compress_superblock.h18 #include <linux/zstd.h> /* ZSTD_CCtx */
27 size_t ZSTD_compressSuperBlock(ZSTD_CCtx* zc,
H A Dzstd_compress.c89 ZSTD_CCtx* ZSTD_createCCtx(void)
94 static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager)
106 ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem)
111 { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_customMalloc(sizeof(ZSTD_CCtx), customMem);
118 ZSTD_CCtx* ZSTD_initStaticCCtx(void* workspace, size_t workspaceSize)
121 ZSTD_CCtx* cctx;
122 if (workspaceSize <= sizeof(ZSTD_CCtx)) return NULL; /* minimum size */
126 cctx = (ZSTD_CCtx*)ZSTD_cwksp_reserve_objec
[all...]
H A Dzstd_compress_internal.h1353 size_t ZSTD_compressBegin_advanced_internal(ZSTD_CCtx* cctx,
1363 size_t ZSTD_compress_advanced_internal(ZSTD_CCtx* cctx,
1388 size_t ZSTD_referenceExternalSequences(ZSTD_CCtx* cctx, rawSeq* seq, size_t nbSeq);
1397 void ZSTD_CCtx_trace(ZSTD_CCtx* cctx, size_t extraCSize);
H A Dzstd_compress_superblock.c551 size_t ZSTD_compressSuperBlock(ZSTD_CCtx* zc,
/linux-master/include/linux/
H A Dzstd_lib.h193 typedef struct ZSTD_CCtx_s ZSTD_CCtx; typedef in typeref:struct:ZSTD_CCtx_s
194 ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx(void);
195 ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx); /* accept NULL pointer */
198 * Same as ZSTD_compress(), using an explicit ZSTD_CCtx.
205 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx,
462 ZSTDLIB_API size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value);
479 ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize);
501 ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset);
513 ZSTDLIB_API size_t ZSTD_compress2( ZSTD_CCtx* cctx,
611 * note : since v1.3.0, ZSTD_CStream and ZSTD_CCtx ar
[all...]
H A Dzstd.h141 typedef ZSTD_CCtx zstd_cctx;
/linux-master/lib/zstd/common/
H A Dzstd_internal.h344 const seqStore_t* ZSTD_getSeqStore(const ZSTD_CCtx* ctx); /* compress & dictBuilder */
412 void ZSTD_invalidateRepCodes(ZSTD_CCtx* cctx); /* zstdmt, adaptive_compression (shouldn't get this definition from here) */
/linux-master/fs/bcachefs/
H A Dcompress.c357 ZSTD_CCtx *ctx = zstd_init_cctx(workspace, c->zstd_workspace_size);

Completed in 268 milliseconds