Lines Matching refs:ZSTD_DCtx
930 typedef struct ZSTD_DCtx_s ZSTD_DCtx; typedef
2875 ZSTD_DCtx* dctx = (ZSTD_DCtx*)ctx; in ZSTD_decodeLiteralsBlock()
3181 ZSTD_DCtx* dctx = (ZSTD_DCtx*)ctx; in ZSTD_decompressSequences()
3326 ZSTD_DCtx ctx; in ZSTD_decompress()
3390 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx) in ZSTD_resetDCtx()
3399 static ZSTD_DCtx* ZSTD_createDCtx(void) in ZSTD_createDCtx()
3401 ZSTD_DCtx* dctx = (ZSTD_DCtx*)malloc(sizeof(ZSTD_DCtx)); in ZSTD_createDCtx()
3407 static size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx) in ZSTD_freeDCtx()
3413 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) in ZSTD_nextSrcSizeToDecompress()
3418 static size_t ZSTD_decompressContinue(ZSTD_DCtx* ctx, void* dst, size_t maxDstSize, const void* src… in ZSTD_decompressContinue()
3506 return ZSTD_freeDCtx((ZSTD_DCtx*)dctx); in ZSTDv02_freeDCtx()
3511 return ZSTD_resetDCtx((ZSTD_DCtx*)dctx); in ZSTDv02_resetDCtx()
3516 return ZSTD_nextSrcSizeToDecompress((ZSTD_DCtx*)dctx); in ZSTDv02_nextSrcSizeToDecompress()
3521 return ZSTD_decompressContinue((ZSTD_DCtx*)dctx, dst, maxDstSize, src, srcSize); in ZSTDv02_decompressContinue()