Lines Matching refs:__x
724 #define MT_BUG_ON(__tree, __x) do { \ argument
726 if (__x) { \
728 __func__, __LINE__, __x); \
739 #define MAS_BUG_ON(__mas, __x) do { \ argument
741 if (__x) { \
743 __func__, __LINE__, __x); \
755 #define MAS_WR_BUG_ON(__wrmas, __x) do { \ argument
757 if (__x) { \
759 __func__, __LINE__, __x); \
772 #define MT_WARN_ON(__tree, __x) ({ \ argument
773 int ret = !!(__x); \
777 __func__, __LINE__, __x); \
789 #define MAS_WARN_ON(__mas, __x) ({ \ argument
790 int ret = !!(__x); \
794 __func__, __LINE__, __x); \
807 #define MAS_WR_WARN_ON(__wrmas, __x) ({ \ argument
808 int ret = !!(__x); \
812 __func__, __LINE__, __x); \
826 #define MT_BUG_ON(__tree, __x) BUG_ON(__x) argument
827 #define MAS_BUG_ON(__mas, __x) BUG_ON(__x) argument
828 #define MAS_WR_BUG_ON(__mas, __x) BUG_ON(__x) argument
829 #define MT_WARN_ON(__tree, __x) WARN_ON(__x) argument
830 #define MAS_WARN_ON(__mas, __x) WARN_ON(__x) argument
831 #define MAS_WR_WARN_ON(__mas, __x) WARN_ON(__x) argument