Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v06.h72 typedef struct ZSTDv06_DCtx_s ZSTDv06_DCtx; typedef
73 ZSTDLIBv06_API ZSTDv06_DCtx* ZSTDv06_createDCtx(void);
74 ZSTDLIBv06_API size_t ZSTDv06_freeDCtx(ZSTDv06_DCtx* dctx); /*!< @return : errorCode */
78 ZSTDLIBv06_API size_t ZSTDv06_decompressDCtx(ZSTDv06_DCtx* ctx, void* dst, size_t dstCapacity, cons…
88 ZSTDLIBv06_API size_t ZSTDv06_decompress_usingDict(ZSTDv06_DCtx* dctx,
101 ZSTDLIBv06_API size_t ZSTDv06_decompressBegin_usingDict(ZSTDv06_DCtx* dctx, const void* dict, size_…
102 ZSTDLIBv06_API void ZSTDv06_copyDCtx(ZSTDv06_DCtx* dctx, const ZSTDv06_DCtx* preparedDCtx);
104 ZSTDLIBv06_API size_t ZSTDv06_nextSrcSizeToDecompress(ZSTDv06_DCtx* dctx);
105 ZSTDLIBv06_API size_t ZSTDv06_decompressContinue(ZSTDv06_DCtx* dctx, void* dst, size_t dstCapacity,…
H A Dzstd_v06.c332 ZSTDv06_DCtx* dctx, const ZSTDv06_DCtx* preparedDCtx,
342 ZSTDLIBv06_API size_t ZSTDv06_decompressBegin(ZSTDv06_DCtx* dctx);
401 ZSTDLIBv06_API size_t ZSTDv06_decompressBlock(ZSTDv06_DCtx* dctx, void* dst, size_t dstCapacity, co…
2827 size_t ZSTDv06_sizeofDCtx (void) { return sizeof(ZSTDv06_DCtx); } in ZSTDv06_sizeofDCtx()
2829 size_t ZSTDv06_decompressBegin(ZSTDv06_DCtx* dctx) in ZSTDv06_decompressBegin()
2842 ZSTDv06_DCtx* ZSTDv06_createDCtx(void) in ZSTDv06_createDCtx()
2844 ZSTDv06_DCtx* dctx = (ZSTDv06_DCtx*)malloc(sizeof(ZSTDv06_DCtx)); in ZSTDv06_createDCtx()
2850 size_t ZSTDv06_freeDCtx(ZSTDv06_DCtx* dctx) in ZSTDv06_freeDCtx()
2856 void ZSTDv06_copyDCtx(ZSTDv06_DCtx* dstDCtx, const ZSTDv06_DCtx* srcDCtx) in ZSTDv06_copyDCtx()
2859 …sizeof(ZSTDv06_DCtx) - (ZSTDv06_BLOCKSIZE_MAX+WILDCOPY_OVERLENGTH + ZSTDv06_frameHeaderSize_max));… in ZSTDv06_copyDCtx()
[all …]
H A Dzstd_legacy.h159 ZSTDv06_DCtx* const zd = ZSTDv06_createDCtx(); in ZSTD_decompressLegacy()