Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/common/
H A Derror_private.h32 # define ERR_STATIC static __attribute__((unused)) macro
34 # define ERR_STATIC static inline
36 # define ERR_STATIC static __inline
38 # define ERR_STATIC static /* this version may generate warnings for unused static functions; dis…
56 ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); } in ERR_isError()
58 ERR_STATIC ERR_enum ERR_getErrorCode(size_t code) { if (!ERR_isError(code)) return (ERR_enum)0; ret… in ERR_getErrorCode()
71 ERR_STATIC const char* ERR_getErrorName(size_t code) in ERR_getErrorName()