Home
last modified time | relevance | path

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

/external/zstd/lib/legacy/
Dzstd_v05.h61 typedef struct ZSTDv05_DCtx_s ZSTDv05_DCtx; typedef
62 ZSTDv05_DCtx* ZSTDv05_createDCtx(void);
63 size_t ZSTDv05_freeDCtx(ZSTDv05_DCtx* dctx); /*!< @return : errorCode */
67 size_t ZSTDv05_decompressDCtx(ZSTDv05_DCtx* ctx, void* dst, size_t dstCapacity, const void* src, si…
77 size_t ZSTDv05_decompress_usingDict(ZSTDv05_DCtx* dctx,
93 size_t ZSTDv05_decompressBegin_usingDict(ZSTDv05_DCtx* dctx, const void* dict, size_t dictSize);
94 void ZSTDv05_copyDCtx(ZSTDv05_DCtx* dstDCtx, const ZSTDv05_DCtx* srcDCtx);
95 size_t ZSTDv05_nextSrcSizeToDecompress(ZSTDv05_DCtx* dctx);
96 size_t ZSTDv05_decompressContinue(ZSTDv05_DCtx* dctx, void* dst, size_t dstCapacity, const void* sr…
Dzstd_v05.c325 ZSTDv05_DCtx* dctx, const ZSTDv05_DCtx* preparedDCtx,
333 size_t ZSTDv05_decompressBegin(ZSTDv05_DCtx* dctx);
387 size_t ZSTDv05_decompressBlock(ZSTDv05_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, …
2670 size_t ZSTDv05_sizeofDCtx (void) { return sizeof(ZSTDv05_DCtx); } in ZSTDv05_sizeofDCtx()
2672 size_t ZSTDv05_decompressBegin(ZSTDv05_DCtx* dctx) in ZSTDv05_decompressBegin()
2685 ZSTDv05_DCtx* ZSTDv05_createDCtx(void) in ZSTDv05_createDCtx()
2687 ZSTDv05_DCtx* dctx = (ZSTDv05_DCtx*)malloc(sizeof(ZSTDv05_DCtx)); in ZSTDv05_createDCtx()
2693 size_t ZSTDv05_freeDCtx(ZSTDv05_DCtx* dctx) in ZSTDv05_freeDCtx()
2699 void ZSTDv05_copyDCtx(ZSTDv05_DCtx* dstDCtx, const ZSTDv05_DCtx* srcDCtx) in ZSTDv05_copyDCtx()
2702 …sizeof(ZSTDv05_DCtx) - (BLOCKSIZE+WILDCOPY_OVERLENGTH + ZSTDv05_frameHeaderSize_max)); /* no need… in ZSTDv05_copyDCtx()
[all …]
Dzstd_legacy.h149 ZSTDv05_DCtx* const zd = ZSTDv05_createDCtx(); in ZSTD_decompressLegacy()