Home
last modified time | relevance | path

Searched refs:ZSTDv01_Dctx (Results 1 – 2 of 2) sorted by relevance

/external/zstd/lib/legacy/
Dzstd_v01.h60 typedef struct ZSTDv01_Dctx_s ZSTDv01_Dctx; typedef
61 ZSTDv01_Dctx* ZSTDv01_createDCtx(void);
62 size_t ZSTDv01_freeDCtx(ZSTDv01_Dctx* dctx);
71 size_t ZSTDv01_resetDCtx(ZSTDv01_Dctx* dctx);
73 size_t ZSTDv01_nextSrcSizeToDecompress(ZSTDv01_Dctx* dctx);
74 size_t ZSTDv01_decompressContinue(ZSTDv01_Dctx* dctx, void* dst, size_t maxDstSize, const void* src…
Dzstd_v01.c2067 size_t ZSTDv01_resetDCtx(ZSTDv01_Dctx* dctx) in ZSTDv01_resetDCtx()
2076 ZSTDv01_Dctx* ZSTDv01_createDCtx(void) in ZSTDv01_createDCtx()
2078 ZSTDv01_Dctx* dctx = (ZSTDv01_Dctx*)malloc(sizeof(ZSTDv01_Dctx)); in ZSTDv01_createDCtx()
2084 size_t ZSTDv01_freeDCtx(ZSTDv01_Dctx* dctx) in ZSTDv01_freeDCtx()
2090 size_t ZSTDv01_nextSrcSizeToDecompress(ZSTDv01_Dctx* dctx) in ZSTDv01_nextSrcSizeToDecompress()
2095 size_t ZSTDv01_decompressContinue(ZSTDv01_Dctx* dctx, void* dst, size_t maxDstSize, const void* src… in ZSTDv01_decompressContinue()