Home
last modified time | relevance | path

Searched refs:drm_format_info_min_pitch (Results 1 – 8 of 8) sorted by relevance

/Linux-v6.1/drivers/gpu/drm/tests/
Ddrm_format_test.c128 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0); in drm_test_format_min_pitch_invalid()
129 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, -1, 0), 0); in drm_test_format_min_pitch_invalid()
130 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0); in drm_test_format_min_pitch_invalid()
139 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0); in drm_test_format_min_pitch_one_plane_8bpp()
140 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, -1, 0), 0); in drm_test_format_min_pitch_one_plane_8bpp()
141 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0); in drm_test_format_min_pitch_one_plane_8bpp()
143 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1), 1); in drm_test_format_min_pitch_one_plane_8bpp()
144 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 2), 2); in drm_test_format_min_pitch_one_plane_8bpp()
145 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 640), 640); in drm_test_format_min_pitch_one_plane_8bpp()
146 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1024), 1024); in drm_test_format_min_pitch_one_plane_8bpp()
[all …]
/Linux-v6.1/drivers/gpu/drm/gud/
Dgud_pipe.c72 len = drm_format_info_min_pitch(format, 0, width) * height; in gud_xrgb8888_to_r124()
118 len = drm_format_info_min_pitch(format, 0, width) * drm_rect_height(rect); in gud_xrgb8888_to_color()
167 pitch = drm_format_info_min_pitch(format, 0, drm_rect_width(rect)); in gud_prep_flush()
395 pitch = drm_format_info_min_pitch(format, 0, drm_rect_width(&damage)); in gud_flush_work()
Dgud_drv.c547 fmt_buf_size = drm_format_info_min_pitch(info, 0, drm->mode_config.max_width) * in gud_probe()
/Linux-v6.1/include/drm/
Ddrm_fourcc.h320 uint64_t drm_format_info_min_pitch(const struct drm_format_info *info,
/Linux-v6.1/drivers/gpu/drm/
Ddrm_fourcc.c436 uint64_t drm_format_info_min_pitch(const struct drm_format_info *info, in drm_format_info_min_pitch() function
446 EXPORT_SYMBOL(drm_format_info_min_pitch);
Ddrm_gem_framebuffer_helper.c181 + drm_format_info_min_pitch(info, i, width) in drm_gem_fb_init_with_funcs()
Ddrm_framebuffer.c202 u64 min_pitch = drm_format_info_min_pitch(info, i, width); in framebuffer_check()
/Linux-v6.1/drivers/gpu/drm/tiny/
Dsimpledrm.c696 stride = drm_format_info_min_pitch(format, 0, width); in simpledrm_device_create()