• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/contrib/zstd/lib/dictBuilder/

Lines Matching defs:ZDICTLIB_API

23 /* =====   ZDICTLIB_API : control library symbols visibility   ===== */
32 # define ZDICTLIB_API __declspec(dllexport) ZDICTLIB_VISIBILITY
34 # define ZDICTLIB_API __declspec(dllimport) ZDICTLIB_VISIBILITY /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/
36 # define ZDICTLIB_API ZDICTLIB_VISIBILITY
60 ZDICTLIB_API size_t ZDICT_trainFromBuffer(void* dictBuffer, size_t dictBufferCapacity,
106 ZDICTLIB_API size_t ZDICT_finalizeDictionary(void* dstDictBuffer, size_t maxDictSize,
113 ZDICTLIB_API unsigned ZDICT_getDictID(const void* dictBuffer, size_t dictSize); /**< extracts dictID; @return zero if error (not a valid dictionary) */
114 ZDICTLIB_API size_t ZDICT_getDictHeaderSize(const void* dictBuffer, size_t dictSize); /* returns dict header size; returns a ZSTD error code on failure */
115 ZDICTLIB_API unsigned ZDICT_isError(size_t errorCode);
116 ZDICTLIB_API const char* ZDICT_getErrorName(size_t errorCode);
175 ZDICTLIB_API size_t ZDICT_trainFromBuffer_cover(
197 ZDICTLIB_API size_t ZDICT_optimizeTrainFromBuffer_cover(
218 ZDICTLIB_API size_t ZDICT_trainFromBuffer_fastCover(void *dictBuffer,
241 ZDICTLIB_API size_t ZDICT_optimizeTrainFromBuffer_fastCover(void* dictBuffer,
266 ZDICTLIB_API size_t ZDICT_trainFromBuffer_legacy(
277 # define ZDICT_DEPRECATED(message) ZDICTLIB_API /* disable deprecation warnings */
281 # define ZDICT_DEPRECATED(message) [[deprecated(message)]] ZDICTLIB_API
283 # define ZDICT_DEPRECATED(message) ZDICTLIB_API __attribute__((deprecated(message)))
285 # define ZDICT_DEPRECATED(message) ZDICTLIB_API __attribute__((deprecated))
287 # define ZDICT_DEPRECATED(message) ZDICTLIB_API __declspec(deprecated(message))
290 # define ZDICT_DEPRECATED(message) ZDICTLIB_API