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

/linux-master/lib/zstd/decompress/
H A Dzstd_ddict.h40 void ZSTD_copyDDictParameters(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict);
H A Dzstd_decompress_block.h48 size_t ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx,
H A Dzstd_decompress.c63 #include "zstd_decompress_internal.h" /* ZSTD_DCtx */
213 size_t ZSTD_sizeof_DCtx (const ZSTD_DCtx* dctx)
221 size_t ZSTD_estimateDCtxSize(void) { return sizeof(ZSTD_DCtx); }
232 static void ZSTD_DCtx_resetParameters(ZSTD_DCtx* dctx)
242 static void ZSTD_initDCtx_internal(ZSTD_DCtx* dctx)
266 ZSTD_DCtx* ZSTD_initStaticDCtx(void *workspace, size_t workspaceSize)
268 ZSTD_DCtx* const dctx = (ZSTD_DCtx*) workspace;
271 if (workspaceSize < sizeof(ZSTD_DCtx)) return NULL; /* minimum size */
279 static ZSTD_DCtx* ZSTD_createDCtx_interna
[all...]
H A Dzstd_decompress_block.c26 #include "zstd_decompress_internal.h" /* ZSTD_DCtx */
73 static void ZSTD_allocateLiteralsBuffer(ZSTD_DCtx* dctx, void* const dst, const size_t dstCapacity, const size_t litSize,
108 size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* dctx,
119 size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* dctx,
653 size_t ZSTD_decodeSeqHeaders(ZSTD_DCtx* dctx, int* nbSeqPtr,
1272 MEM_STATIC int ZSTD_dictionaryIsActive(ZSTD_DCtx const* dctx, BYTE const* prefixStart, BYTE const* oLitEnd)
1288 ZSTD_DCtx const* dctx,
1322 ZSTD_decompressSequences_bodySplitLitBuffer( ZSTD_DCtx* dctx,
1539 ZSTD_decompressSequences_body(ZSTD_DCtx* dctx,
1627 ZSTD_decompressSequences_default(ZSTD_DCtx* dct
[all...]
H A Dzstd_decompress_internal.h102 /* Hashset for storing references to multiple ZSTD_DDict within ZSTD_DCtx */
199 }; /* typedef'd to ZSTD_DCtx within "zstd.h" */
225 void ZSTD_checkContinuity(ZSTD_DCtx* dctx, const void* dst, size_t dstSize);
H A Dzstd_ddict.c55 void ZSTD_copyDDictParameters(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict)
/linux-master/include/linux/
H A Dzstd_lib.h216 typedef struct ZSTD_DCtx_s ZSTD_DCtx; typedef in typeref:struct:ZSTD_DCtx_s
217 ZSTDLIB_API ZSTD_DCtx* ZSTD_createDCtx(void);
218 ZSTDLIB_API size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx); /* accept NULL pointer */
222 * requires an allocated ZSTD_DCtx.
225 ZSTDLIB_API size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx,
572 ZSTDLIB_API size_t ZSTD_DCtx_setParameter(ZSTD_DCtx* dctx, ZSTD_dParameter param, int value);
580 ZSTDLIB_API size_t ZSTD_DCtx_reset(ZSTD_DCtx* dctx, ZSTD_ResetDirective reset);
783 typedef ZSTD_DCtx ZSTD_DStream; /*< DCtx and DStream are now effectively same object (>= v1.3.0) */
826 ZSTDLIB_API size_t ZSTD_decompress_usingDict(ZSTD_DCtx* dctx,
883 ZSTDLIB_API size_t ZSTD_decompress_usingDDict(ZSTD_DCtx* dct
[all...]
H A Dzstd.h185 typedef ZSTD_DCtx zstd_dctx;
/linux-master/lib/zstd/common/
H A Dzstd_internal.h430 size_t ZSTD_decodeSeqHeaders(ZSTD_DCtx* dctx, int* nbSeqPtr,
/linux-master/fs/bcachefs/
H A Dcompress.c192 ZSTD_DCtx *ctx;

Completed in 407 milliseconds