Home
last modified time | relevance | path

Searched refs:ZSTD_DCtx (Results 1 – 10 of 10) sorted by relevance

/linux-6.15/include/linux/
H A Dzstd_lib.h282 typedef struct ZSTD_DCtx_s ZSTD_DCtx; typedef
283 ZSTDLIB_API ZSTD_DCtx* ZSTD_createDCtx(void);
291 ZSTDLIB_API size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx,
955 ZSTDLIB_API size_t ZSTD_decompress_usingDict(ZSTD_DCtx* dctx,
1012 ZSTDLIB_API size_t ZSTD_decompress_usingDDict(ZSTD_DCtx* dctx,
1177 ZSTDLIB_API size_t ZSTD_DCtx_refPrefix(ZSTD_DCtx* dctx,
1186 ZSTDLIB_API size_t ZSTD_sizeof_DCtx(const ZSTD_DCtx* dctx);
2569 size_t ZSTD_DCtx_setFormat(ZSTD_DCtx* dctx, ZSTD_format_e format);
2578 ZSTD_DCtx* dctx,
3091 ZSTDLIB_STATIC_API size_t ZSTD_decompressBegin(ZSTD_DCtx* dctx);
[all …]
H A Dzstd.h311 typedef ZSTD_DCtx zstd_dctx;
/linux-6.15/lib/zstd/decompress/
H A Dzstd_decompress.c216 size_t ZSTD_sizeof_DCtx (const ZSTD_DCtx* dctx) in ZSTD_sizeof_DCtx()
247 static void ZSTD_initDCtx_internal(ZSTD_DCtx* dctx) in ZSTD_initDCtx_internal()
274 ZSTD_DCtx* const dctx = (ZSTD_DCtx*) workspace; in ZSTD_initStaticDCtx()
288 { ZSTD_DCtx* const dctx = (ZSTD_DCtx*)ZSTD_customMalloc(sizeof(*dctx), customMem); in ZSTD_createDCtx_internal()
301 ZSTD_DCtx* ZSTD_createDCtx(void) in ZSTD_createDCtx()
307 static void ZSTD_clearDict(ZSTD_DCtx* dctx) in ZSTD_clearDict()
315 size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx) in ZSTD_freeDCtx()
333 void ZSTD_copyDCtx(ZSTD_DCtx* dstDCtx, const ZSTD_DCtx* srcDCtx) in ZSTD_copyDCtx()
1139 ZSTD_DCtx dctx; in ZSTD_decompress()
1486 size_t ZSTD_decompressBegin(ZSTD_DCtx* dctx) in ZSTD_decompressBegin()
[all …]
H A Dzstd_decompress_block.h49 size_t ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx,
69 size_t ZSTD_decompressBlock_deprecated(ZSTD_DCtx* dctx,
H A Dzstd_decompress_block.c55 static size_t ZSTD_blockSizeMax(ZSTD_DCtx const* dctx) in ZSTD_blockSizeMax()
135 static size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* dctx, in ZSTD_decodeLiteralsBlock()
1368 ZSTD_DCtx const* dctx, in ZSTD_assertValidSequence()
1616 ZSTD_decompressSequences_body(ZSTD_DCtx* dctx, in ZSTD_decompressSequences_body()
1694 ZSTD_decompressSequences_default(ZSTD_DCtx* dctx, in ZSTD_decompressSequences_default()
1735 ZSTD_DCtx* dctx, in ZSTD_decompressSequencesLong_body()
1908 ZSTD_decompressSequences_bmi2(ZSTD_DCtx* dctx, in ZSTD_decompressSequences_bmi2()
1928 ZSTD_decompressSequencesLong_bmi2(ZSTD_DCtx* dctx, in ZSTD_decompressSequencesLong_bmi2()
1976 ZSTD_decompressSequencesLong(ZSTD_DCtx* dctx, in ZSTD_decompressSequencesLong()
2067 ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx,
[all …]
H A Dzstd_ddict.h41 void ZSTD_copyDDictParameters(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict);
H A Dzstd_decompress_internal.h230 void ZSTD_checkContinuity(ZSTD_DCtx* dctx, const void* dst, size_t dstSize);
H A Dzstd_ddict.c56 void ZSTD_copyDDictParameters(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict) in ZSTD_copyDDictParameters()
/linux-6.15/lib/zstd/common/
H A Dzstd_internal.h306 size_t ZSTD_decodeSeqHeaders(ZSTD_DCtx* dctx, int* nbSeqPtr,
/linux-6.15/fs/bcachefs/
H A Dcompress.c226 ZSTD_DCtx *ctx; in __bio_uncompress()