Searched refs:__BUG_WARN_MSG (Results 1 - 1 of 1) sorted by relevance

/xsrc/external/mit/xorg-server/dist/include/
H A Dmisc.h420 #define __BUG_WARN_MSG(cond, with_msg, ...) \ macro
430 __BUG_WARN_MSG(cond, 1, __VA_ARGS__)
432 #define BUG_WARN(cond) __BUG_WARN_MSG(cond, 0, NULL)
435 do { if (cond) { __BUG_WARN_MSG(cond, 0, NULL); return; } } while(0)
438 do { if (cond) { __BUG_WARN_MSG(cond, 1, __VA_ARGS__); return; } } while(0)
441 do { if (cond) { __BUG_WARN_MSG(cond, 0, NULL); return (val); } } while(0)
444 do { if (cond) { __BUG_WARN_MSG(cond, 1, __VA_ARGS__); return (val); } } while(0)

Completed in 22 milliseconds