Lines Matching refs:cond
12 #define LL_ASSERT(cond) \ argument
13 if (!(cond)) { \
14 BT_ASSERT_PRINT(cond); \
17 #define LL_ASSERT_MSG(cond, fmt, ...) \ argument
18 if (!(cond)) { \
19 BT_ASSERT_PRINT(cond); \
24 #define LL_ASSERT(cond) \ argument
25 BT_ASSERT(cond)
26 #define LL_ASSERT_MSG(cond, fmt, ...) \ argument
27 BT_ASSERT_MSG(cond, fmt, ##__VA_ARGS__)
31 #define LL_ASSERT_INFO1(cond, param) \ argument
32 BT_ASSERT_VND(cond, param, 0)
33 #define LL_ASSERT_INFO2(cond, param1, param2) \ argument
34 BT_ASSERT_VND(cond, param1, param2)
36 #define LL_ASSERT_INFO1(cond, param) \ argument
37 LL_ASSERT_MSG(cond, "param: %u", param)
38 #define LL_ASSERT_INFO2(cond, param1, param2) \ argument
39 LL_ASSERT_MSG(cond, "param1: %u param2: %u", param1, param2)