Lines Matching refs:condition
83 #define __xe_assert_msg(xe, condition, msg, arg...) ({ \ argument
84 (void)drm_WARN(&(xe)->drm, !(condition), "Assertion `%s` failed!\n" msg, \
85 __stringify(condition), ## arg); \
88 #define __xe_assert_msg(xe, condition, msg, arg...) ({ \ argument
90 BUILD_BUG_ON_INVALID(condition); \
108 #define xe_assert(xe, condition) xe_assert_msg((xe), condition, "") argument
109 #define xe_assert_msg(xe, condition, msg, arg...) ({ \ argument
111 __xe_assert_msg(__xe, condition, \
143 #define xe_tile_assert(tile, condition) xe_tile_assert_msg((tile), condition, "") argument
144 #define xe_tile_assert_msg(tile, condition, msg, arg...) ({ \ argument
147 xe_assert_msg(tile_to_xe(__tile), condition, "tile: %u VRAM %s\n" msg, \
167 #define xe_gt_assert(gt, condition) xe_gt_assert_msg((gt), condition, "") argument
168 #define xe_gt_assert_msg(gt, condition, msg, arg...) ({ \ argument
170 xe_tile_assert_msg(gt_to_tile(__gt), condition, "GT: %u type %d\n" msg, \