Home
last modified time | relevance | path

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

/linux/include/linux/
H A Dzstd_lib.h282 typedef struct ZSTD_DCtx_s ZSTD_DCtx; typedef
283 ZSTDLIB_API ZSTD_DCtx* ZSTD_createDCtx(void);
284 ZSTDLIB_API size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx); /* accept NULL pointer */
291 ZSTDLIB_API size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx,
665 ZSTDLIB_API size_t ZSTD_DCtx_setParameter(ZSTD_DCtx* dctx, ZSTD_dParameter param, int value);
673 ZSTDLIB_API size_t ZSTD_DCtx_reset(ZSTD_DCtx* dctx, ZSTD_ResetDirective reset);
887 typedef ZSTD_DCtx ZSTD_DStream; /*< DCtx and DStream are now effectively same object (>= v1.3.0) */
955 ZSTDLIB_API size_t ZSTD_decompress_usingDict(ZSTD_DCtx* dctx,
1012 ZSTDLIB_API size_t ZSTD_decompress_usingDDict(ZSTD_DCtx* dctx,
1140 ZSTDLIB_API size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize);
[all …]
H A Dzstd.h311 typedef ZSTD_DCtx zstd_dctx;
/linux/lib/zstd/decompress/
H A Dzstd_decompress.c216 size_t ZSTD_sizeof_DCtx (const ZSTD_DCtx* dctx) in ZSTD_sizeof_DCtx()
224 size_t ZSTD_estimateDCtxSize(void) { return sizeof(ZSTD_DCtx); } in ZSTD_estimateDCtxSize()
235 static void ZSTD_DCtx_resetParameters(ZSTD_DCtx* dctx) in ZSTD_DCtx_resetParameters()
247 static void ZSTD_initDCtx_internal(ZSTD_DCtx* dctx) in ZSTD_initDCtx_internal()
272 ZSTD_DCtx* ZSTD_initStaticDCtx(void *workspace, size_t workspaceSize) in ZSTD_initStaticDCtx()
274 ZSTD_DCtx* const dctx = (ZSTD_DCtx*) workspace; in ZSTD_initStaticDCtx()
277 if (workspaceSize < sizeof(ZSTD_DCtx)) return NULL; /* minimum size */ in ZSTD_initStaticDCtx()
285 static ZSTD_DCtx* ZSTD_createDCtx_internal(ZSTD_customMem customMem) { in ZSTD_createDCtx_internal()
288 { ZSTD_DCtx* const dctx = (ZSTD_DCtx*)ZSTD_customMalloc(sizeof(*dctx), customMem); in ZSTD_createDCtx_internal()
296 ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem) in ZSTD_createDCtx_advanced()
[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()
81 static void ZSTD_allocateLiteralsBuffer(ZSTD_DCtx* dctx, void* const dst, const size_t dstCapacity,… in ZSTD_allocateLiteralsBuffer()
135 static size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* dctx, in ZSTD_decodeLiteralsBlock()
344 size_t ZSTD_decodeLiteralsBlock_wrapper(ZSTD_DCtx* dctx,
347 size_t ZSTD_decodeLiteralsBlock_wrapper(ZSTD_DCtx* dctx, in ZSTD_decodeLiteralsBlock_wrapper()
696 size_t ZSTD_decodeSeqHeaders(ZSTD_DCtx* dctx, int* nbSeqPtr, in ZSTD_decodeSeqHeaders()
1351 static int ZSTD_dictionaryIsActive(ZSTD_DCtx const* dctx, BYTE const* prefixStart, BYTE const* oLit… in ZSTD_dictionaryIsActive()
1368 ZSTD_DCtx const* dctx, in ZSTD_assertValidSequence()
1404 ZSTD_decompressSequences_bodySplitLitBuffer( ZSTD_DCtx* dctx, in ZSTD_decompressSequences_bodySplitLitBuffer()
1616 ZSTD_decompressSequences_body(ZSTD_DCtx* dctx, in ZSTD_decompressSequences_body()
[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/lib/zstd/common/
H A Dzstd_internal.h306 size_t ZSTD_decodeSeqHeaders(ZSTD_DCtx* dctx, int* nbSeqPtr,