Lines Matching defs:condition
61 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0) argument
68 #define WARN_ON_ONCE(condition) ({ \ argument
123 #define WARN_ON(condition) ({ \ argument
132 #define WARN(condition, format...) ({ \ argument
140 #define WARN_TAINT(condition, taint, format...) ({ \ argument
148 #define WARN_ON_ONCE(condition) ({ \ argument
160 #define WARN_ONCE(condition, format...) ({ \ argument
171 #define WARN_TAINT_ONCE(condition, taint, format...) ({ \ argument
188 #define BUG_ON(condition) do { if (condition) BUG(); } while (0) argument
192 #define WARN_ON(condition) ({ \ argument
199 #define WARN(condition, format...) ({ \ argument
206 #define WARN_ON_ONCE(condition) WARN_ON(condition) argument
207 #define WARN_ONCE(condition, format...) WARN(condition, format) argument
208 #define WARN_TAINT(condition, taint, format...) WARN(condition, format) argument
209 #define WARN_TAINT_ONCE(condition, taint, format...) WARN(condition, format) argument