Searched refs:condition (Results 1 – 3 of 3) sorted by relevance
/DragonStub/inc/dragonstub/ |
H A D | bug.h | 10 #define WARN(condition, format...) \ argument 12 int __ret_warn_on = !!(condition); \ 22 #define WARN_ON(condition) \ argument 24 int __ret_warn_on = !!(condition); \ 31 #define WARN_ON_ONCE(condition) WARN_ON(condition) argument 32 #define WARN_ONCE(condition, format...) WARN(condition, format) argument 33 #define WARN_TAINT(condition, taint, format...) WARN(condition, format) argument 34 #define WARN_TAINT_ONCE(condition, taint, format...) WARN(condition, format) argument 42 #define BUILD_BUG_ON(condition) \ argument 44 efi_err("BUILD_BUG_ON(%s)\n", #condition); \
|
H A D | compiler_types.h | 229 #define __compiletime_assert(condition, msg, prefix, suffix) \ argument 238 if (!(condition)) \ 242 #define __compiletime_assert(condition, msg, prefix, suffix) \ argument 247 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 248 __compiletime_assert(condition, msg, prefix, suffix) 259 #define compiletime_assert(condition, msg) \ argument 260 _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__)
|
/DragonStub/inc/dragonstub/linux/ |
H A D | once_lite.h | 13 #define __ONCE_LITE_IF(condition) \ argument 16 bool __ret_cond = !!(condition); \ 26 #define DO_ONCE_LITE_IF(condition, func, ...) \ argument 28 bool __ret_do_once = !!(condition); \
|