Searched refs:ZSTDv05_DCtx (Results 1 – 3 of 3) sorted by relevance
/freebsd/sys/contrib/zstd/lib/legacy/ |
H A D | zstd_v05.h | 61 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…
|
H A D | zstd_v05.c | 322 ZSTDv05_DCtx* dctx, const ZSTDv05_DCtx* preparedDCtx, 330 size_t ZSTDv05_decompressBegin(ZSTDv05_DCtx* dctx); 384 size_t ZSTDv05_decompressBlock(ZSTDv05_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, … 2666 size_t ZSTDv05_sizeofDCtx (void) { return sizeof(ZSTDv05_DCtx); } in ZSTDv05_sizeofDCtx() 2668 size_t ZSTDv05_decompressBegin(ZSTDv05_DCtx* dctx) in ZSTDv05_decompressBegin() 2681 ZSTDv05_DCtx* ZSTDv05_createDCtx(void) in ZSTDv05_createDCtx() 2683 ZSTDv05_DCtx* dctx = (ZSTDv05_DCtx*)malloc(sizeof(ZSTDv05_DCtx)); in ZSTDv05_createDCtx() 2689 size_t ZSTDv05_freeDCtx(ZSTDv05_DCtx* dctx) in ZSTDv05_freeDCtx() 2695 void ZSTDv05_copyDCtx(ZSTDv05_DCtx* dstDCtx, const ZSTDv05_DCtx* srcDCtx) in ZSTDv05_copyDCtx() 2698 …sizeof(ZSTDv05_DCtx) - (BLOCKSIZE+WILDCOPY_OVERLENGTH + ZSTDv05_frameHeaderSize_max)); /* no need… in ZSTDv05_copyDCtx() [all …]
|
H A D | zstd_legacy.h | 149 ZSTDv05_DCtx* const zd = ZSTDv05_createDCtx(); in ZSTD_decompressLegacy()
|