Searched refs:ZBUFFv07_DCtx (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/sys/contrib/zstd/lib/legacy/
H A Dzstd_v07.h129 typedef struct ZBUFFv07_DCtx_s ZBUFFv07_DCtx; typedef in typeref:struct:ZBUFFv07_DCtx_s
130 ZSTDLIBv07_API ZBUFFv07_DCtx* ZBUFFv07_createDCtx(void);
131 ZSTDLIBv07_API size_t ZBUFFv07_freeDCtx(ZBUFFv07_DCtx* dctx);
133 ZSTDLIBv07_API size_t ZBUFFv07_decompressInit(ZBUFFv07_DCtx* dctx);
134 ZSTDLIBv07_API size_t ZBUFFv07_decompressInitDictionary(ZBUFFv07_DCtx* dctx, const void* dict, size_t dictSize);
136 ZSTDLIBv07_API size_t ZBUFFv07_decompressContinue(ZBUFFv07_DCtx* dctx,
143 * A ZBUFFv07_DCtx object is required to track streaming operations.
147 * Note that ZBUFFv07_DCtx objects can be re-init multiple times.
H A Dzstd_legacy.h274 case 7 : return ZBUFFv07_freeDCtx((ZBUFFv07_DCtx*)legacyContext);
327 ZBUFFv07_DCtx* dctx = (prevVersion != newVersion) ? ZBUFFv07_createDCtx() : (ZBUFFv07_DCtx*)*legacyContext;
396 ZBUFFv07_DCtx* dctx = (ZBUFFv07_DCtx*) legacyContext;
H A Dzstd_v07.c4292 * A ZBUFFv07_DCtx object is required to track streaming operations.
4296 * Note that ZBUFFv07_DCtx objects can be re-init multiple times.
4332 }; /* typedef'd to ZBUFFv07_DCtx within "zstd_buffered.h" */
4334 ZSTDLIBv07_API ZBUFFv07_DCtx* ZBUFFv07_createDCtx_advanced(ZSTDv07_customMem customMem);
4336 ZBUFFv07_DCtx* ZBUFFv07_createDCtx(void)
4341 ZBUFFv07_DCtx* ZBUFFv07_createDCtx_advanced(ZSTDv07_customMem customMem)
4343 ZBUFFv07_DCtx* zbd;
4351 zbd = (ZBUFFv07_DCtx*)customMem.customAlloc(customMem.opaque, sizeof(ZBUFFv07_DCtx));
4353 memset(zbd, 0, sizeof(ZBUFFv07_DCtx));
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.c23802 typedef struct ZBUFFv07_DCtx_s ZBUFFv07_DCtx; typedef in typeref:struct:ZBUFFv07_DCtx_s
23803 ZSTDLIBv07_API ZBUFFv07_DCtx* ZBUFFv07_createDCtx(void);
23804 ZSTDLIBv07_API size_t ZBUFFv07_freeDCtx(ZBUFFv07_DCtx* dctx);
23806 ZSTDLIBv07_API size_t ZBUFFv07_decompressInit(ZBUFFv07_DCtx* dctx);
23807 ZSTDLIBv07_API size_t ZBUFFv07_decompressInitDictionary(ZBUFFv07_DCtx* dctx, const void* dict, size_t dictSize);
23809 ZSTDLIBv07_API size_t ZBUFFv07_decompressContinue(ZBUFFv07_DCtx* dctx,
23816 * A ZBUFFv07_DCtx object is required to track streaming operations.
23820 * Note that ZBUFFv07_DCtx objects can be re-init multiple times.
24086 case 7 : return ZBUFFv07_freeDCtx((ZBUFFv07_DCtx*)legacyContext);
24139 ZBUFFv07_DCtx* dct
[all...]

Completed in 230 milliseconds