Lines Matching refs:__x
623 #define MT_BUG_ON(__tree, __x) do { \ argument
625 if (__x) { \
627 __func__, __LINE__, __x); \
638 #define MAS_BUG_ON(__mas, __x) do { \ argument
640 if (__x) { \
642 __func__, __LINE__, __x); \
654 #define MAS_WR_BUG_ON(__wrmas, __x) do { \ argument
656 if (__x) { \
658 __func__, __LINE__, __x); \
671 #define MT_WARN_ON(__tree, __x) ({ \ argument
672 int ret = !!(__x); \
676 __func__, __LINE__, __x); \
688 #define MAS_WARN_ON(__mas, __x) ({ \ argument
689 int ret = !!(__x); \
693 __func__, __LINE__, __x); \
706 #define MAS_WR_WARN_ON(__wrmas, __x) ({ \ argument
707 int ret = !!(__x); \
711 __func__, __LINE__, __x); \
725 #define MT_BUG_ON(__tree, __x) BUG_ON(__x) argument
726 #define MAS_BUG_ON(__mas, __x) BUG_ON(__x) argument
727 #define MAS_WR_BUG_ON(__mas, __x) BUG_ON(__x) argument
728 #define MT_WARN_ON(__tree, __x) WARN_ON(__x) argument
729 #define MAS_WARN_ON(__mas, __x) WARN_ON(__x) argument
730 #define MAS_WR_WARN_ON(__mas, __x) WARN_ON(__x) argument