Lines Matching refs:ZSTD_DCtx

265 typedef ZSTDv04_Dctx ZSTD_DCtx;  typedef
273 static size_t ZSTD_decompress_usingDict(ZSTD_DCtx* ctx,
282 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx);
284 static void ZSTD_decompress_insertDictionary(ZSTD_DCtx* ctx, const void* src, size_t srcSize);
286 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx);
287 static size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, void* dst, size_t maxDstSize, const void* sr…
2514 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx) in ZSTD_resetDCtx()
2525 static ZSTD_DCtx* ZSTD_createDCtx(void) in ZSTD_createDCtx()
2527 ZSTD_DCtx* dctx = (ZSTD_DCtx*)malloc(sizeof(ZSTD_DCtx)); in ZSTD_createDCtx()
2533 static size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx) in ZSTD_freeDCtx()
2547 static size_t ZSTD_decodeFrameHeader_Part1(ZSTD_DCtx* zc, const void* src, size_t srcSize) in ZSTD_decodeFrameHeader_Part1()
2574 static size_t ZSTD_decodeFrameHeader_Part2(ZSTD_DCtx* zc, const void* src, size_t srcSize) in ZSTD_decodeFrameHeader_Part2()
2635 static size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* dctx, in ZSTD_decodeLiteralsBlock()
2951 ZSTD_DCtx* dctx, in ZSTD_decompressSequences()
3024 static void ZSTD_checkContinuity(ZSTD_DCtx* dctx, const void* dst) in ZSTD_checkContinuity()
3036 static size_t ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx, in ZSTD_decompressBlock_internal()
3056 static size_t ZSTD_decompress_usingDict(ZSTD_DCtx* ctx, in ZSTD_decompress_usingDict()
3191 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) in ZSTD_nextSrcSizeToDecompress()
3196 static size_t ZSTD_decompressContinue(ZSTD_DCtx* ctx, void* dst, size_t maxDstSize, const void* src… in ZSTD_decompressContinue()
3272 static void ZSTD_decompress_insertDictionary(ZSTD_DCtx* ctx, const void* dict, size_t dictSize) in ZSTD_decompress_insertDictionary()
3354 ZSTD_DCtx* zc;
3599 size_t ZSTDv04_decompressDCtx(ZSTD_DCtx* dctx, void* dst, size_t maxDstSize, const void* src, size_… in ZSTDv04_decompressDCtx()
3608 ZSTD_DCtx* dctx = ZSTD_createDCtx(); in ZSTDv04_decompress()
3614 ZSTD_DCtx dctx; in ZSTDv04_decompress()
3646 ZSTD_DCtx* ZSTDv04_createDCtx(void) { return ZSTD_createDCtx(); } in ZSTDv04_createDCtx()
3647 size_t ZSTDv04_freeDCtx(ZSTD_DCtx* dctx) { return ZSTD_freeDCtx(dctx); } in ZSTDv04_freeDCtx()