Home
last modified time | relevance | path

Searched refs:ZSTDv07_DCtx (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v07.h74 typedef struct ZSTDv07_DCtx_s ZSTDv07_DCtx; typedef
75 ZSTDLIBv07_API ZSTDv07_DCtx* ZSTDv07_createDCtx(void);
76 ZSTDLIBv07_API size_t ZSTDv07_freeDCtx(ZSTDv07_DCtx* dctx); /*!< @return : errorCode */
80 ZSTDLIBv07_API size_t ZSTDv07_decompressDCtx(ZSTDv07_DCtx* ctx, void* dst, size_t dstCapacity, cons…
90 ZSTDLIBv07_API size_t ZSTDv07_decompress_usingDict(ZSTDv07_DCtx* dctx,
109 ZSTDLIBv07_API size_t ZSTDv07_decompress_usingDDict(ZSTDv07_DCtx* dctx,
H A Dzstd_v07.c91 ZSTDLIBv07_API void ZSTDv07_copyDCtx(ZSTDv07_DCtx* dctx, const ZSTDv07_DCtx* preparedDCtx);
2979 ZSTDv07_DCtx* dctx; in ZSTDv07_createDCtx_advanced()
2987 dctx = (ZSTDv07_DCtx*) customMem.customAlloc(customMem.opaque, sizeof(ZSTDv07_DCtx)); in ZSTDv07_createDCtx_advanced()
2994 ZSTDv07_DCtx* ZSTDv07_createDCtx(void) in ZSTDv07_createDCtx()
2999 size_t ZSTDv07_freeDCtx(ZSTDv07_DCtx* dctx) in ZSTDv07_freeDCtx()
3006 void ZSTDv07_copyDCtx(ZSTDv07_DCtx* dstDCtx, const ZSTDv07_DCtx* srcDCtx) in ZSTDv07_copyDCtx()
3862 static size_t ZSTDv07_decompress_usingPreparedDCtx(ZSTDv07_DCtx* dctx, const ZSTDv07_DCtx* refDCtx, in ZSTDv07_decompress_usingPreparedDCtx()
3899 ZSTDv07_DCtx dctx; in ZSTDv07_decompress()
3977 int ZSTDv07_isSkipFrame(ZSTDv07_DCtx* dctx) in ZSTDv07_isSkipFrame()
4183 ZSTDv07_DCtx* refContext;
[all …]
H A Dzstd_legacy.h169 ZSTDv07_DCtx* const zd = ZSTDv07_createDCtx(); in ZSTD_decompressLegacy()