Loading...
Searching...
No Matches
Go to the documentation of this file.
28#if defined(__clang__) || defined(__GNUC__)
29# define ELL_LIKELY(x) __builtin_expect(!!(x), 1)
31# define ELL_LIKELY(x) (!!(x))
45#if defined(__clang__) || defined(__GNUC__)
46# define ELL_UNLIKELY(x) __builtin_expect(!!(x), 0)
48# define ELL_UNLIKELY(x) (!!(x))