Home
last modified time | relevance | path

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

/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 …]
/drivers/gpu/drm/
Ddrm_gem_framebuffer_helper.c169 + drm_format_info_min_pitch(info, i, width) in drm_gem_fb_create_with_funcs()
Ddrm_fourcc.c385 uint64_t drm_format_info_min_pitch(const struct drm_format_info *info, in drm_format_info_min_pitch() function
395 EXPORT_SYMBOL(drm_format_info_min_pitch);
Ddrm_framebuffer.c205 u64 min_pitch = drm_format_info_min_pitch(info, i, width); in framebuffer_check()