Home
last modified time | relevance | path

Searched refs:ZSTDLIB_API (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/lib/
H A Dzstd.h34 # define ZSTDLIB_API ZSTDLIB_VISIBILITY
148 ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx(void);
153 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* ctx,
165 ZSTDLIB_API ZSTD_DCtx* ZSTD_createDCtx(void);
309 ZSTDLIB_API ZSTD_CStream* ZSTD_createCStream(void);
348 ZSTDLIB_API ZSTD_DStream* ZSTD_createDStream(void);
515 ZSTDLIB_API size_t ZSTD_estimateDCtxSize(void);
572 ZSTDLIB_API const ZSTD_CDict* ZSTD_initStaticCDict(
579 ZSTDLIB_API const ZSTD_DDict* ZSTD_initStaticDDict(
1139 ZSTDLIB_API void ZSTD_CCtx_reset(ZSTD_CCtx* cctx);
[all …]
/freebsd-12.1/sys/contrib/zstd/contrib/seekable_format/
H A Dzstd_seekable.h76 ZSTDLIB_API ZSTD_seekable_CStream* ZSTD_seekable_createCStream(void);
77 ZSTDLIB_API size_t ZSTD_seekable_freeCStream(ZSTD_seekable_CStream* zcs);
82 ZSTDLIB_API size_t ZSTD_seekable_endFrame(ZSTD_seekable_CStream* zcs, ZSTD_outBuffer* output);
83 ZSTDLIB_API size_t ZSTD_seekable_endStream(ZSTD_seekable_CStream* zcs, ZSTD_outBuffer* output);
103 ZSTDLIB_API ZSTD_frameLog* ZSTD_seekable_createFrameLog(int checksumFlag);
104 ZSTDLIB_API size_t ZSTD_seekable_freeFrameLog(ZSTD_frameLog* fl);
106 ZSTDLIB_API size_t ZSTD_seekable_writeSeekTable(ZSTD_frameLog* fl, ZSTD_outBuffer* output);
152 ZSTDLIB_API ZSTD_seekable* ZSTD_seekable_create(void);
153 ZSTDLIB_API size_t ZSTD_seekable_free(ZSTD_seekable* zs);
157 ZSTDLIB_API size_t ZSTD_seekable_initFile(ZSTD_seekable* zs, FILE* src);
[all …]
/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.h33 ZSTDLIB_API ZSTDMT_CCtx* ZSTDMT_createCCtx(unsigned nbWorkers);
34 ZSTDLIB_API ZSTDMT_CCtx* ZSTDMT_createCCtx_advanced(unsigned nbWorkers,
36 ZSTDLIB_API size_t ZSTDMT_freeCCtx(ZSTDMT_CCtx* mtctx);
38 ZSTDLIB_API size_t ZSTDMT_sizeof_CCtx(ZSTDMT_CCtx* mtctx);
43 ZSTDLIB_API size_t ZSTDMT_compressCCtx(ZSTDMT_CCtx* mtctx,
52 ZSTDLIB_API size_t ZSTDMT_initCStream(ZSTDMT_CCtx* mtctx, int compressionLevel);
55 ZSTDLIB_API size_t ZSTDMT_compressStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output, ZSTD_inBuffer*…
67 ZSTDLIB_API size_t ZSTDMT_compress_advanced(ZSTDMT_CCtx* mtctx,
74 ZSTDLIB_API size_t ZSTDMT_initCStream_advanced(ZSTDMT_CCtx* mtctx,
79 ZSTDLIB_API size_t ZSTDMT_initCStream_usingCDict(ZSTDMT_CCtx* mtctx,
[all …]
H A Dzstd_compress.c497 ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize) in ZSTD_CCtx_setPledgedSrcSize()
530 ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary_byReference( in ZSTD_CCtx_loadDictionary_byReference()
537 ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, const void* dict, size_t dictSize) in ZSTD_CCtx_loadDictionary()
/freebsd-12.1/sys/contrib/zstd/lib/deprecated/
H A Dzbuff.h44 # define ZBUFF_DEPRECATED(message) ZSTDLIB_API /* disable deprecation warnings */
47 # define ZBUFF_DEPRECATED(message) [[deprecated(message)]] ZSTDLIB_API
49 # define ZBUFF_DEPRECATED(message) ZSTDLIB_API __attribute__((deprecated(message)))
51 # define ZBUFF_DEPRECATED(message) ZSTDLIB_API __attribute__((deprecated))
53 # define ZBUFF_DEPRECATED(message) ZSTDLIB_API __declspec(deprecated(message))
56 # define ZBUFF_DEPRECATED(message) ZSTDLIB_API
/freebsd-12.1/sys/contrib/zstd/contrib/gen_html/
H A DREADME.md15 - `ZSTDLIB_API` is removed to improve readability
/freebsd-12.1/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c1724 ZSTDLIB_API size_t ZSTD_insertBlock(ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize) in ZSTD_insertBlock()