Home
last modified time | relevance | path

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

/external/zstd/lib/legacy/
Dzstd_v06.h113 typedef struct ZBUFFv06_DCtx_s ZBUFFv06_DCtx; typedef
114 ZSTDLIBv06_API ZBUFFv06_DCtx* ZBUFFv06_createDCtx(void);
115 ZSTDLIBv06_API size_t ZBUFFv06_freeDCtx(ZBUFFv06_DCtx* dctx);
117 ZSTDLIBv06_API size_t ZBUFFv06_decompressInit(ZBUFFv06_DCtx* dctx);
118 ZSTDLIBv06_API size_t ZBUFFv06_decompressInitDictionary(ZBUFFv06_DCtx* dctx, const void* dict, size…
120 ZSTDLIBv06_API size_t ZBUFFv06_decompressContinue(ZBUFFv06_DCtx* dctx,
Dzstd_legacy.h271 case 6 : return ZBUFFv06_freeDCtx((ZBUFFv06_DCtx*)legacyContext); in ZSTD_freeLegacyStreamContext()
317ZBUFFv06_DCtx* dctx = (prevVersion != newVersion) ? ZBUFFv06_createDCtx() : (ZBUFFv06_DCtx*)*legac… in ZSTD_initLegacyStream()
382 ZBUFFv06_DCtx* dctx = (ZBUFFv06_DCtx*) legacyContext; in ZSTD_decompressLegacyStream()
Dzstd_v06.c3969 ZBUFFv06_DCtx* ZBUFFv06_createDCtx(void) in ZBUFFv06_createDCtx()
3971 ZBUFFv06_DCtx* zbd = (ZBUFFv06_DCtx*)malloc(sizeof(ZBUFFv06_DCtx)); in ZBUFFv06_createDCtx()
3979 size_t ZBUFFv06_freeDCtx(ZBUFFv06_DCtx* zbd) in ZBUFFv06_freeDCtx()
3992 size_t ZBUFFv06_decompressInitDictionary(ZBUFFv06_DCtx* zbd, const void* dict, size_t dictSize) in ZBUFFv06_decompressInitDictionary()
3999 size_t ZBUFFv06_decompressInit(ZBUFFv06_DCtx* zbd) in ZBUFFv06_decompressInit()
4018 size_t ZBUFFv06_decompressContinue(ZBUFFv06_DCtx* zbd, in ZBUFFv06_decompressContinue()