Lines Matching refs:ZSTD_DCtx
927 typedef struct ZSTD_DCtx_s ZSTD_DCtx; typedef
2512 ZSTD_DCtx* dctx = (ZSTD_DCtx*)ctx; in ZSTD_decodeLiteralsBlock()
2818 ZSTD_DCtx* dctx = (ZSTD_DCtx*)ctx; in ZSTD_decompressSequences()
2963 ZSTD_DCtx ctx; in ZSTD_decompress()
3028 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx) in ZSTD_resetDCtx()
3037 static ZSTD_DCtx* ZSTD_createDCtx(void) in ZSTD_createDCtx()
3039 ZSTD_DCtx* dctx = (ZSTD_DCtx*)malloc(sizeof(ZSTD_DCtx)); in ZSTD_createDCtx()
3045 static size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx) in ZSTD_freeDCtx()
3051 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) in ZSTD_nextSrcSizeToDecompress()
3056 static size_t ZSTD_decompressContinue(ZSTD_DCtx* ctx, void* dst, size_t maxDstSize, const void* src… in ZSTD_decompressContinue()
3144 return ZSTD_freeDCtx((ZSTD_DCtx*)dctx); in ZSTDv03_freeDCtx()
3149 return ZSTD_resetDCtx((ZSTD_DCtx*)dctx); in ZSTDv03_resetDCtx()
3154 return ZSTD_nextSrcSizeToDecompress((ZSTD_DCtx*)dctx); in ZSTDv03_nextSrcSizeToDecompress()
3159 return ZSTD_decompressContinue((ZSTD_DCtx*)dctx, dst, maxDstSize, src, srcSize); in ZSTDv03_decompressContinue()