Lines Matching defs:dctx

2458 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx)  in ZSTD_resetDCtx()
2471 ZSTD_DCtx* dctx = (ZSTD_DCtx*)malloc(sizeof(ZSTD_DCtx)); in ZSTD_createDCtx() local
2477 static size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx) in ZSTD_freeDCtx()
2579 static size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* dctx, in ZSTD_decodeLiteralsBlock()
2901 ZSTD_DCtx* dctx, in ZSTD_decompressSequences()
2974 static void ZSTD_checkContinuity(ZSTD_DCtx* dctx, const void* dst) in ZSTD_checkContinuity()
2986 static size_t ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx, in ZSTD_decompressBlock_internal()
3141 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) in ZSTD_nextSrcSizeToDecompress()
3550 size_t ZSTDv04_decompressDCtx(ZSTD_DCtx* dctx, void* dst, size_t maxDstSize, const void* src, size_… in ZSTDv04_decompressDCtx()
3559 ZSTD_DCtx* dctx = ZSTD_createDCtx(); in ZSTDv04_decompress() local
3570 size_t ZSTDv04_resetDCtx(ZSTDv04_Dctx* dctx) { return ZSTD_resetDCtx(dctx); } in ZSTDv04_resetDCtx()
3572 size_t ZSTDv04_nextSrcSizeToDecompress(ZSTDv04_Dctx* dctx) in ZSTDv04_nextSrcSizeToDecompress()
3577 size_t ZSTDv04_decompressContinue(ZSTDv04_Dctx* dctx, void* dst, size_t maxDstSize, const void* src… in ZSTDv04_decompressContinue()
3585 size_t ZBUFFv04_freeDCtx(ZBUFFv04_DCtx* dctx) { return ZBUFF_freeDCtx(dctx); } in ZBUFFv04_freeDCtx()
3587 size_t ZBUFFv04_decompressInit(ZBUFFv04_DCtx* dctx) { return ZBUFF_decompressInit(dctx); } in ZBUFFv04_decompressInit()
3588 size_t ZBUFFv04_decompressWithDictionary(ZBUFFv04_DCtx* dctx, const void* src, size_t srcSize) in ZBUFFv04_decompressWithDictionary()
3591 size_t ZBUFFv04_decompressContinue(ZBUFFv04_DCtx* dctx, void* dst, size_t* maxDstSizePtr, const voi… in ZBUFFv04_decompressContinue()
3598 size_t ZSTDv04_freeDCtx(ZSTD_DCtx* dctx) { return ZSTD_freeDCtx(dctx); } in ZSTDv04_freeDCtx()