Lines Matching defs:condition
61 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0) argument
68 #define WARN_ON_ONCE(condition) ({ \ argument
121 #define WARN_ON(condition) ({ \ argument
130 #define WARN(condition, format...) ({ \ argument
138 #define WARN_TAINT(condition, taint, format...) ({ \ argument
146 #define WARN_ON_ONCE(condition) ({ \ argument
158 #define WARN_ONCE(condition, format...) ({ \ argument
169 #define WARN_TAINT_ONCE(condition, taint, format...) ({ \ argument
186 #define BUG_ON(condition) do { if (condition) BUG(); } while (0) argument
190 #define WARN_ON(condition) ({ \ argument
197 #define WARN(condition, format...) ({ \ argument
204 #define WARN_ON_ONCE(condition) WARN_ON(condition) argument
205 #define WARN_ONCE(condition, format...) WARN(condition, format) argument
206 #define WARN_TAINT(condition, taint, format...) WARN(condition, format) argument
207 #define WARN_TAINT_ONCE(condition, taint, format...) WARN(condition, format) argument