Searched refs:condition (Results 1 – 4 of 4) sorted by relevance
| /include/linux/ |
| A D | bug.h | 14 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0) argument 16 #define WARN_ON(condition) ({ \ argument 17 int __ret_warn_on = !!(condition); \ 23 #define WARN(condition, format...) ({ \ argument 24 int __ret_warn_on = !!(condition); \ 30 #define WARN_ON_ONCE(condition) ({ \ argument 32 int __ret_warn_once = !!(condition); \ 41 #define WARN_ONCE(condition, format...) ({ \ argument 43 int __ret_warn_once = !!(condition); \
|
| A D | build_bug.h | 48 #define BUILD_BUG_ON(condition) \ argument 49 BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition)
|
| A D | compiler.h | 323 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument 326 if (!(condition)) \ 330 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument 333 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 334 __compiletime_assert(condition, msg, prefix, suffix) 345 #define compiletime_assert(condition, msg) \ argument 346 _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__)
|
| A D | compat.h | 92 #define __wait_event_timeout(condition, timeout, ret) \ argument 98 if (condition) { \ 124 #define wait_event_timeout(wq_head, condition, timeout) \ argument 127 if (condition) \ 130 __ret = __wait_event_timeout(condition, timeout, __ret);\
|
Completed in 7 milliseconds