Home
last modified time | relevance | path

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

/include/linux/
A Dbug.h14 #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 Dbuild_bug.h48 #define BUILD_BUG_ON(condition) \ argument
49 BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition)
A Dcompiler.h323 # 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 Dcompat.h92 #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