Lines Matching full:visible

15 	bool visible;  in drm_test_rect_clip_scaled_div_by_zero()  local
24 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_div_by_zero()
26 KUNIT_EXPECT_FALSE_MSG(test, visible, "Destination not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
27 KUNIT_EXPECT_FALSE_MSG(test, drm_rect_visible(&src), "Source should not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
32 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_div_by_zero()
34 KUNIT_EXPECT_FALSE_MSG(test, visible, "Destination not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
35 KUNIT_EXPECT_FALSE_MSG(test, drm_rect_visible(&src), "Source should not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
41 bool visible; in drm_test_rect_clip_scaled_not_clipped() local
48 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_not_clipped()
54 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
55 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
62 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_not_clipped()
68 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
69 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
76 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_not_clipped()
82 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
83 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
89 bool visible; in drm_test_rect_clip_scaled_clipped() local
96 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
102 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
103 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
110 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
116 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
117 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
124 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
130 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
131 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
138 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
144 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
145 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
152 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
158 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
159 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
166 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
172 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
173 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
179 bool visible; in drm_test_rect_clip_scaled_signed_vs_unsigned() local
185 * the clipped source rectangle appering visible when it in drm_test_rect_clip_scaled_signed_vs_unsigned()
193 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_signed_vs_unsigned()
195 KUNIT_EXPECT_FALSE_MSG(test, visible, "Destination should not be visible\n"); in drm_test_rect_clip_scaled_signed_vs_unsigned()
196 KUNIT_EXPECT_FALSE_MSG(test, drm_rect_visible(&src), "Source should not be visible\n"); in drm_test_rect_clip_scaled_signed_vs_unsigned()