Searched refs:ZSTDv03_Dctx (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/sys/contrib/zstd/lib/legacy/
H A Dzstd_v03.h55 typedef struct ZSTDv03_Dctx_s ZSTDv03_Dctx; typedef in typeref:struct:ZSTDv03_Dctx_s
56 ZSTDv03_Dctx* ZSTDv03_createDCtx(void);
57 size_t ZSTDv03_freeDCtx(ZSTDv03_Dctx* dctx);
66 size_t ZSTDv03_resetDCtx(ZSTDv03_Dctx* dctx);
68 size_t ZSTDv03_nextSrcSizeToDecompress(ZSTDv03_Dctx* dctx);
69 size_t ZSTDv03_decompressContinue(ZSTDv03_Dctx* dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize);
H A Dzstd_v03.c3101 ZSTDv03_Dctx* ZSTDv03_createDCtx(void)
3103 return (ZSTDv03_Dctx*)ZSTD_createDCtx();
3106 size_t ZSTDv03_freeDCtx(ZSTDv03_Dctx* dctx)
3111 size_t ZSTDv03_resetDCtx(ZSTDv03_Dctx* dctx)
3116 size_t ZSTDv03_nextSrcSizeToDecompress(ZSTDv03_Dctx* dctx)
3121 size_t ZSTDv03_decompressContinue(ZSTDv03_Dctx* dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)

Completed in 203 milliseconds