Home
last modified time | relevance | path

Searched defs:LIKELY (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/platforms/unix/libpandabase/futex/
Dfmutex.h37 #define LIKELY(a) a macro
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/futex/
Dfmutex.h35 #define LIKELY(a) a macro
/arkcompiler/runtime_core/static_core/libpandabase/
Dmacros.h137 #define LIKELY(exp) (__builtin_expect((exp) != 0, true)) // NOLINT(cppcoreguidelines-macro-usag… macro
/arkcompiler/runtime_core/libpandabase/
Dmacros.h137 #define LIKELY(exp) (__builtin_expect((exp) != 0, true)) // NOLINT(cppcoreguidelines-macro-usage) macro
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dinst.h1573 enum class Prediction { NONE, LIKELY, UNLIKELY, SIZE = UNLIKELY }; enumerator
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Dinst.h2219 enum class Prediction { NONE = 0, LIKELY, UNLIKELY, SIZE = UNLIKELY }; enumerator
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
Dllvm_ir_constructor.cpp2202 auto constexpr LIKELY = llvmbackend::Metadata::BranchWeights::LIKELY_BRANCH_WEIGHT; in CreateIf() local