Lines Matching defs:dctx

2514 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx)  in ZSTD_resetDCtx()
2527 ZSTD_DCtx* dctx = (ZSTD_DCtx*)malloc(sizeof(ZSTD_DCtx)); in ZSTD_createDCtx() local
2533 static size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx) in ZSTD_freeDCtx()
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()
3191 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) in ZSTD_nextSrcSizeToDecompress()
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() local
3619 size_t ZSTDv04_resetDCtx(ZSTDv04_Dctx* dctx) { return ZSTD_resetDCtx(dctx); } in ZSTDv04_resetDCtx()
3621 size_t ZSTDv04_nextSrcSizeToDecompress(ZSTDv04_Dctx* dctx) in ZSTDv04_nextSrcSizeToDecompress()
3626 size_t ZSTDv04_decompressContinue(ZSTDv04_Dctx* dctx, void* dst, size_t maxDstSize, const void* src… in ZSTDv04_decompressContinue()
3634 size_t ZBUFFv04_freeDCtx(ZBUFFv04_DCtx* dctx) { return ZBUFF_freeDCtx(dctx); } in ZBUFFv04_freeDCtx()
3636 size_t ZBUFFv04_decompressInit(ZBUFFv04_DCtx* dctx) { return ZBUFF_decompressInit(dctx); } in ZBUFFv04_decompressInit()
3637 size_t ZBUFFv04_decompressWithDictionary(ZBUFFv04_DCtx* dctx, const void* src, size_t srcSize) in ZBUFFv04_decompressWithDictionary()
3640 size_t ZBUFFv04_decompressContinue(ZBUFFv04_DCtx* dctx, void* dst, size_t* maxDstSizePtr, const voi… in ZBUFFv04_decompressContinue()
3647 size_t ZSTDv04_freeDCtx(ZSTD_DCtx* dctx) { return ZSTD_freeDCtx(dctx); } in ZSTDv04_freeDCtx()