Lines Matching full:visible
28 bool visible; in drm_test_rect_clip_scaled_div_by_zero() local
37 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_div_by_zero()
39 KUNIT_EXPECT_FALSE_MSG(test, visible, "Destination not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
40 KUNIT_EXPECT_FALSE_MSG(test, drm_rect_visible(&src), "Source should not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
45 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_div_by_zero()
47 KUNIT_EXPECT_FALSE_MSG(test, visible, "Destination not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
48 KUNIT_EXPECT_FALSE_MSG(test, drm_rect_visible(&src), "Source should not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
54 bool visible; in drm_test_rect_clip_scaled_not_clipped() local
61 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_not_clipped()
67 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
68 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
75 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_not_clipped()
81 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
82 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
89 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_not_clipped()
95 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
96 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
102 bool visible; in drm_test_rect_clip_scaled_clipped() local
109 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
115 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
116 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
123 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
129 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
130 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
137 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
143 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
144 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
151 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
157 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
158 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
165 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
171 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
172 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
179 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_clipped()
185 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
186 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
192 bool visible; in drm_test_rect_clip_scaled_signed_vs_unsigned() local
198 * the clipped source rectangle appering visible when it in drm_test_rect_clip_scaled_signed_vs_unsigned()
206 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_signed_vs_unsigned()
208 KUNIT_EXPECT_FALSE_MSG(test, visible, "Destination should not be visible\n"); in drm_test_rect_clip_scaled_signed_vs_unsigned()
209 KUNIT_EXPECT_FALSE_MSG(test, drm_rect_visible(&src), "Source should not be visible\n"); in drm_test_rect_clip_scaled_signed_vs_unsigned()
340 bool visible; in drm_test_rect_intersect() local
342 visible = drm_rect_intersect(&r1_aux, ¶ms->r2); in drm_test_rect_intersect()
344 KUNIT_EXPECT_EQ(test, visible, params->should_be_visible); in drm_test_rect_intersect()