Searched defs:LIKELY (Results 1 – 3 of 3) sorted by relevance
37 #define LIKELY(a) a macro
137 #define LIKELY(exp) (__builtin_expect((exp) != 0, true)) // NOLINT(cppcoreguidelines-macro-usage) macro
1920 enum class Prediction { NONE, LIKELY, UNLIKELY, SIZE = UNLIKELY }; enumerator