Lines Matching full:pitch

100 	unsigned int pitch;  member
122 .pitch = 1 * 4,
185 .pitch = 2 * 4,
255 .pitch = 4 * 4,
400 .pitch = 3 * 4,
619 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_gray8()
652 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_rgb332()
685 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_rgb565()
739 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_xrgb1555()
786 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_argb1555()
833 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_rgba5551()
880 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_rgb888()
928 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_argb8888()
975 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_xrgb2101010()
1020 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_argb2101010()
1067 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_mono()
1100 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_swab()
1171 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_abgr8888()
1211 .pitches = { params->pitch, 0, 0 }, in drm_test_fb_xrgb8888_to_xbgr8888()
1242 unsigned int pitch; member
1251 .pitch = TEST_USE_DEFAULT_PITCH,
1258 .pitch = TEST_USE_DEFAULT_PITCH,
1265 .pitch = TEST_USE_DEFAULT_PITCH,
1272 .pitch = TEST_USE_DEFAULT_PITCH,
1278 .name = "horizontal offset (custom pitch)",
1279 .pitch = 20,
1285 .name = "vertical offset (custom pitch)",
1286 .pitch = 20,
1292 .name = "horizontal and vertical offset (custom pitch)",
1293 .pitch = 20,
1313 unsigned int pitch = params->pitch; in drm_test_fb_clip_offset() local
1315 if (pitch == TEST_USE_DEFAULT_PITCH) in drm_test_fb_clip_offset()
1316 pitch = drm_format_info_min_pitch(format_info, 0, in drm_test_fb_clip_offset()
1320 * Assure that the pitch is not zero, because this will inevitable cause the in drm_test_fb_clip_offset()
1323 KUNIT_ASSERT_NE(test, pitch, 0); in drm_test_fb_clip_offset()
1325 offset = drm_fb_clip_offset(pitch, format_info, &params->clip); in drm_test_fb_clip_offset()