HomeSort by: relevance | last modified time | path
    Searched refs:ZSTDv04_Dctx (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v04.h 60 typedef struct ZSTDv04_Dctx_s ZSTDv04_Dctx;
61 ZSTDv04_Dctx* ZSTDv04_createDCtx(void);
62 size_t ZSTDv04_freeDCtx(ZSTDv04_Dctx* dctx);
64 size_t ZSTDv04_decompressDCtx(ZSTDv04_Dctx* dctx,
72 size_t ZSTDv04_resetDCtx(ZSTDv04_Dctx* dctx);
74 size_t ZSTDv04_nextSrcSizeToDecompress(ZSTDv04_Dctx* dctx);
75 size_t ZSTDv04_decompressContinue(ZSTDv04_Dctx* dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize);
zstd_v04.c 209 typedef ZSTDv04_Dctx ZSTD_DCtx;
3570 size_t ZSTDv04_resetDCtx(ZSTDv04_Dctx* dctx) { return ZSTD_resetDCtx(dctx); }
3572 size_t ZSTDv04_nextSrcSizeToDecompress(ZSTDv04_Dctx* dctx)
3577 size_t ZSTDv04_decompressContinue(ZSTDv04_Dctx* dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)

Completed in 63 milliseconds