Lines Matching refs:ZSTDv05_DCtx
322 ZSTDv05_DCtx* dctx, const ZSTDv05_DCtx* preparedDCtx,
330 size_t ZSTDv05_decompressBegin(ZSTDv05_DCtx* dctx);
384 size_t ZSTDv05_decompressBlock(ZSTDv05_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, …
2666 size_t ZSTDv05_sizeofDCtx (void) { return sizeof(ZSTDv05_DCtx); } in ZSTDv05_sizeofDCtx()
2668 size_t ZSTDv05_decompressBegin(ZSTDv05_DCtx* dctx) in ZSTDv05_decompressBegin()
2681 ZSTDv05_DCtx* ZSTDv05_createDCtx(void) in ZSTDv05_createDCtx()
2683 ZSTDv05_DCtx* dctx = (ZSTDv05_DCtx*)malloc(sizeof(ZSTDv05_DCtx)); in ZSTDv05_createDCtx()
2689 size_t ZSTDv05_freeDCtx(ZSTDv05_DCtx* dctx) in ZSTDv05_freeDCtx()
2695 void ZSTDv05_copyDCtx(ZSTDv05_DCtx* dstDCtx, const ZSTDv05_DCtx* srcDCtx) in ZSTDv05_copyDCtx()
2698 …sizeof(ZSTDv05_DCtx) - (BLOCKSIZE+WILDCOPY_OVERLENGTH + ZSTDv05_frameHeaderSize_max)); /* no need… in ZSTDv05_copyDCtx()
2791 static size_t ZSTDv05_decodeFrameHeader_Part1(ZSTDv05_DCtx* zc, const void* src, size_t srcSize) in ZSTDv05_decodeFrameHeader_Part1()
2819 static size_t ZSTDv05_decodeFrameHeader_Part2(ZSTDv05_DCtx* zc, const void* src, size_t srcSize) in ZSTDv05_decodeFrameHeader_Part2()
2862 static size_t ZSTDv05_decodeLiteralsBlock(ZSTDv05_DCtx* dctx, in ZSTDv05_decodeLiteralsBlock()
3303 ZSTDv05_DCtx* dctx, in ZSTDv05_decompressSequences()
3375 static void ZSTDv05_checkContinuity(ZSTDv05_DCtx* dctx, const void* dst) in ZSTDv05_checkContinuity()
3386 static size_t ZSTDv05_decompressBlock_internal(ZSTDv05_DCtx* dctx, in ZSTDv05_decompressBlock_internal()
3405 size_t ZSTDv05_decompressBlock(ZSTDv05_DCtx* dctx, in ZSTDv05_decompressBlock()
3416 static size_t ZSTDv05_decompress_continueDCtx(ZSTDv05_DCtx* dctx, in ZSTDv05_decompress_continueDCtx()
3481 size_t ZSTDv05_decompress_usingPreparedDCtx(ZSTDv05_DCtx* dctx, const ZSTDv05_DCtx* refDCtx, in ZSTDv05_decompress_usingPreparedDCtx()
3491 size_t ZSTDv05_decompress_usingDict(ZSTDv05_DCtx* dctx, in ZSTDv05_decompress_usingDict()
3502 size_t ZSTDv05_decompressDCtx(ZSTDv05_DCtx* dctx, void* dst, size_t maxDstSize, const void* src, si… in ZSTDv05_decompressDCtx()
3511 ZSTDv05_DCtx* dctx = ZSTDv05_createDCtx(); in ZSTDv05_decompress()
3517 ZSTDv05_DCtx dctx; in ZSTDv05_decompress()
3578 size_t ZSTDv05_nextSrcSizeToDecompress(ZSTDv05_DCtx* dctx) in ZSTDv05_nextSrcSizeToDecompress()
3583 size_t ZSTDv05_decompressContinue(ZSTDv05_DCtx* dctx, void* dst, size_t maxDstSize, const void* src… in ZSTDv05_decompressContinue()
3658 static void ZSTDv05_refDictContent(ZSTDv05_DCtx* dctx, const void* dict, size_t dictSize) in ZSTDv05_refDictContent()
3666 static size_t ZSTDv05_loadEntropy(ZSTDv05_DCtx* dctx, const void* dict, size_t dictSize) in ZSTDv05_loadEntropy()
3707 static size_t ZSTDv05_decompress_insertDictionary(ZSTDv05_DCtx* dctx, const void* dict, size_t dict… in ZSTDv05_decompress_insertDictionary()
3731 size_t ZSTDv05_decompressBegin_usingDict(ZSTDv05_DCtx* dctx, const void* dict, size_t dictSize) in ZSTDv05_decompressBegin_usingDict()
3834 ZSTDv05_DCtx* zc;