Searched refs:drm_format_info_min_pitch (Results 1 – 9 of 9) sorted by relevance
/linux-6.3-rc2/drivers/gpu/drm/tests/ |
A D | drm_format_test.c | 128 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() 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() 162 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0); in drm_test_format_min_pitch_one_plane_16bpp() 164 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0); in drm_test_format_min_pitch_one_plane_16bpp() 166 KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1), 2); in drm_test_format_min_pitch_one_plane_16bpp() [all …]
|
/linux-6.3-rc2/drivers/gpu/drm/gud/ |
A D | gud_pipe.c | 70 len = drm_format_info_min_pitch(format, 0, width) * height; in gud_xrgb8888_to_r124() 116 len = drm_format_info_min_pitch(format, 0, width) * drm_rect_height(rect); in gud_xrgb8888_to_color() 162 pitch = drm_format_info_min_pitch(format, 0, drm_rect_width(rect)); in gud_prep_flush() 331 pitch = drm_format_info_min_pitch(format, 0, drm_rect_width(damage)); in gud_flush_damage()
|
A D | gud_drv.c | 537 fmt_buf_size = drm_format_info_min_pitch(info, 0, drm->mode_config.max_width) * in gud_probe()
|
/linux-6.3-rc2/include/drm/ |
A D | drm_fourcc.h | 320 uint64_t drm_format_info_min_pitch(const struct drm_format_info *info,
|
/linux-6.3-rc2/drivers/gpu/drm/ |
A D | drm_fourcc.c | 440 uint64_t drm_format_info_min_pitch(const struct drm_format_info *info, in drm_format_info_min_pitch() function 450 EXPORT_SYMBOL(drm_format_info_min_pitch);
|
A D | drm_gem_framebuffer_helper.c | 180 + drm_format_info_min_pitch(info, i, width) in drm_gem_fb_init_with_funcs()
|
A D | drm_framebuffer.c | 202 u64 min_pitch = drm_format_info_min_pitch(info, i, width); in framebuffer_check()
|
/linux-6.3-rc2/drivers/gpu/drm/tiny/ |
A D | simpledrm.c | 693 stride = drm_format_info_min_pitch(format, 0, width); in simpledrm_device_create()
|
A D | ofdrm.c | 1169 linebytes = drm_format_info_min_pitch(format, 0, width); in ofdrm_device_create()
|
Completed in 18 milliseconds