Lines Matching refs:ZSTDv05_DCtx
325 ZSTDv05_DCtx* dctx, const ZSTDv05_DCtx* preparedDCtx,
333 size_t ZSTDv05_decompressBegin(ZSTDv05_DCtx* dctx);
387 size_t ZSTDv05_decompressBlock(ZSTDv05_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, …
2670 size_t ZSTDv05_sizeofDCtx (void) { return sizeof(ZSTDv05_DCtx); } in ZSTDv05_sizeofDCtx()
2672 size_t ZSTDv05_decompressBegin(ZSTDv05_DCtx* dctx) in ZSTDv05_decompressBegin()
2685 ZSTDv05_DCtx* ZSTDv05_createDCtx(void) in ZSTDv05_createDCtx()
2687 ZSTDv05_DCtx* dctx = (ZSTDv05_DCtx*)malloc(sizeof(ZSTDv05_DCtx)); in ZSTDv05_createDCtx()
2693 size_t ZSTDv05_freeDCtx(ZSTDv05_DCtx* dctx) in ZSTDv05_freeDCtx()
2699 void ZSTDv05_copyDCtx(ZSTDv05_DCtx* dstDCtx, const ZSTDv05_DCtx* srcDCtx) in ZSTDv05_copyDCtx()
2702 …sizeof(ZSTDv05_DCtx) - (BLOCKSIZE+WILDCOPY_OVERLENGTH + ZSTDv05_frameHeaderSize_max)); /* no need… in ZSTDv05_copyDCtx()
2795 static size_t ZSTDv05_decodeFrameHeader_Part1(ZSTDv05_DCtx* zc, const void* src, size_t srcSize) in ZSTDv05_decodeFrameHeader_Part1()
2823 static size_t ZSTDv05_decodeFrameHeader_Part2(ZSTDv05_DCtx* zc, const void* src, size_t srcSize) in ZSTDv05_decodeFrameHeader_Part2()
2866 static size_t ZSTDv05_decodeLiteralsBlock(ZSTDv05_DCtx* dctx, in ZSTDv05_decodeLiteralsBlock()
3307 ZSTDv05_DCtx* dctx, in ZSTDv05_decompressSequences()
3379 static void ZSTDv05_checkContinuity(ZSTDv05_DCtx* dctx, const void* dst) in ZSTDv05_checkContinuity()
3390 static size_t ZSTDv05_decompressBlock_internal(ZSTDv05_DCtx* dctx, in ZSTDv05_decompressBlock_internal()
3409 size_t ZSTDv05_decompressBlock(ZSTDv05_DCtx* dctx, in ZSTDv05_decompressBlock()
3420 static size_t ZSTDv05_decompress_continueDCtx(ZSTDv05_DCtx* dctx, in ZSTDv05_decompress_continueDCtx()
3485 size_t ZSTDv05_decompress_usingPreparedDCtx(ZSTDv05_DCtx* dctx, const ZSTDv05_DCtx* refDCtx, in ZSTDv05_decompress_usingPreparedDCtx()
3495 size_t ZSTDv05_decompress_usingDict(ZSTDv05_DCtx* dctx, in ZSTDv05_decompress_usingDict()
3506 size_t ZSTDv05_decompressDCtx(ZSTDv05_DCtx* dctx, void* dst, size_t maxDstSize, const void* src, si… in ZSTDv05_decompressDCtx()
3515 ZSTDv05_DCtx* dctx = ZSTDv05_createDCtx(); in ZSTDv05_decompress()
3521 ZSTDv05_DCtx dctx; in ZSTDv05_decompress()
3582 size_t ZSTDv05_nextSrcSizeToDecompress(ZSTDv05_DCtx* dctx) in ZSTDv05_nextSrcSizeToDecompress()
3587 size_t ZSTDv05_decompressContinue(ZSTDv05_DCtx* dctx, void* dst, size_t maxDstSize, const void* src… in ZSTDv05_decompressContinue()
3662 static void ZSTDv05_refDictContent(ZSTDv05_DCtx* dctx, const void* dict, size_t dictSize) in ZSTDv05_refDictContent()
3670 static size_t ZSTDv05_loadEntropy(ZSTDv05_DCtx* dctx, const void* dict, size_t dictSize) in ZSTDv05_loadEntropy()
3711 static size_t ZSTDv05_decompress_insertDictionary(ZSTDv05_DCtx* dctx, const void* dict, size_t dict… in ZSTDv05_decompress_insertDictionary()
3735 size_t ZSTDv05_decompressBegin_usingDict(ZSTDv05_DCtx* dctx, const void* dict, size_t dictSize) in ZSTDv05_decompressBegin_usingDict()
3838 ZSTDv05_DCtx* zc;