Home
last modified time | relevance | path

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

/Linux-v5.15/drivers/gpu/drm/selftests/
Dtest-drm_format.c106 FAIL_ON(drm_format_info_min_pitch(info, 0, 0) != 0); in igt_check_drm_format_min_pitch()
107 FAIL_ON(drm_format_info_min_pitch(info, -1, 0) != 0); in igt_check_drm_format_min_pitch()
108 FAIL_ON(drm_format_info_min_pitch(info, 1, 0) != 0); in igt_check_drm_format_min_pitch()
113 FAIL_ON(drm_format_info_min_pitch(info, 0, 0) != 0); in igt_check_drm_format_min_pitch()
114 FAIL_ON(drm_format_info_min_pitch(info, -1, 0) != 0); in igt_check_drm_format_min_pitch()
115 FAIL_ON(drm_format_info_min_pitch(info, 1, 0) != 0); in igt_check_drm_format_min_pitch()
117 FAIL_ON(drm_format_info_min_pitch(info, 0, 1) != 1); in igt_check_drm_format_min_pitch()
118 FAIL_ON(drm_format_info_min_pitch(info, 0, 2) != 2); in igt_check_drm_format_min_pitch()
119 FAIL_ON(drm_format_info_min_pitch(info, 0, 640) != 640); in igt_check_drm_format_min_pitch()
120 FAIL_ON(drm_format_info_min_pitch(info, 0, 1024) != 1024); in igt_check_drm_format_min_pitch()
[all …]
/Linux-v5.15/drivers/gpu/drm/gud/
Dgud_pipe.c71 len = drm_format_info_min_pitch(format, 0, width) * height; in gud_xrgb8888_to_r124()
114 len = drm_format_info_min_pitch(format, 0, width) * drm_rect_height(rect); in gud_xrgb8888_to_color()
161 pitch = drm_format_info_min_pitch(format, 0, drm_rect_width(rect)); in gud_prep_flush()
381 pitch = drm_format_info_min_pitch(format, 0, drm_rect_width(&damage)); in gud_flush_work()
Dgud_drv.c540 fmt_buf_size = drm_format_info_min_pitch(info, 0, drm->mode_config.max_width) * in gud_probe()
/Linux-v5.15/include/drm/
Ddrm_fourcc.h316 uint64_t drm_format_info_min_pitch(const struct drm_format_info *info,
/Linux-v5.15/drivers/gpu/drm/
Ddrm_fourcc.c377 uint64_t drm_format_info_min_pitch(const struct drm_format_info *info, in drm_format_info_min_pitch() function
387 EXPORT_SYMBOL(drm_format_info_min_pitch);
Ddrm_gem_framebuffer_helper.c174 + 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()