Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/libpandabase/
Dmacros.h154 #define ASSERT_OP(lhs, op, rhs) do { \ macro
167 #define CHECK_LE(lhs, rhs) ASSERT_OP(lhs, <=, rhs)
169 #define CHECK_LT(lhs, rhs) ASSERT_OP(lhs, <, rhs)
171 #define CHECK_GE(lhs, rhs) ASSERT_OP(lhs, >=, rhs)
173 #define CHECK_GT(lhs, rhs) ASSERT_OP(lhs, >, rhs)
175 #define CHECK_EQ(lhs, rhs) ASSERT_OP(lhs, ==, rhs)
177 #define CHECK_NE(lhs, rhs) ASSERT_OP(lhs, !=, rhs)
215 #define ASSERT_OP(lhs, op, rhs) // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) macro