Searched defs:UNLIKELY (Results 1 – 7 of 7) sorted by relevance
38 #define UNLIKELY(a) a macro
36 #define UNLIKELY(a) a macro
138 #define UNLIKELY(exp) (__builtin_expect((exp) != 0, false)) // NOLINT(cppcoreguidelines-macro-usag… macro
1573 enum class Prediction { NONE, LIKELY, UNLIKELY, SIZE = UNLIKELY }; enumerator
2219 enum class Prediction { NONE = 0, LIKELY, UNLIKELY, SIZE = UNLIKELY }; enumerator
2203 auto constexpr UNLIKELY = llvmbackend::Metadata::BranchWeights::UNLIKELY_BRANCH_WEIGHT; in CreateIf() local