Home
last modified time | relevance | path

Searched refs:dst_pitch (Results 1 – 9 of 9) sorted by relevance

/linux/drivers/gpu/drm/tests/
H A Ddrm_format_helper_test.c28 unsigned int dst_pitch; member
33 unsigned int dst_pitch; member
38 unsigned int dst_pitch; member
44 unsigned int dst_pitch; member
49 unsigned int dst_pitch; member
54 unsigned int dst_pitch; member
59 unsigned int dst_pitch; member
64 unsigned int dst_pitch; member
69 unsigned int dst_pitch; member
74 unsigned int dst_pitch; member
[all …]
/linux/drivers/video/fbdev/via/
H A Daccel.c40 u8 dst_bpp, u32 dst_addr, u32 dst_pitch, u32 dst_x, u32 dst_y, in hw_bitblt_1() argument
139 if (tmp & 0xFFFFC007 || dst_pitch & 0xFFFFC007) { in hw_bitblt_1()
141 tmp, dst_pitch); in hw_bitblt_1()
144 tmp = VIA_PITCH_ENABLE | (tmp >> 3) | (dst_pitch << (16 - 3)); in hw_bitblt_1()
173 u8 dst_bpp, u32 dst_addr, u32 dst_pitch, u32 dst_x, u32 dst_y, in hw_bitblt_2() argument
220 if (tmp & 0xFFFFC007 || dst_pitch & 0xFFFFC007) { in hw_bitblt_2()
222 tmp, dst_pitch); in hw_bitblt_2()
225 tmp = (tmp >> 3) | (dst_pitch << (16 - 3)); in hw_bitblt_2()
H A Dviafbdev.h53 u8 dst_bpp, u32 dst_addr, u32 dst_pitch, u32 dst_x, u32 dst_y,
/linux/drivers/gpu/drm/sysfb/
H A Ddrm_sysfb_modeset.c194 static void drm_sysfb_memcpy(struct iosys_map *dst, const unsigned int *dst_pitch, in drm_sysfb_memcpy() argument
198 drm_fb_memcpy(dst, dst_pitch, src, fb, clip); in drm_sysfb_memcpy()
338 unsigned int dst_pitch = sysfb->fb_pitch; in drm_sysfb_plane_helper_atomic_update() local
362 iosys_map_incr(&dst, drm_fb_clip_offset(dst_pitch, dst_format, &dst_clip)); in drm_sysfb_plane_helper_atomic_update()
363 blit_to_crtc(&dst, &dst_pitch, shadow_plane_state->data, fb, &damage, in drm_sysfb_plane_helper_atomic_update()
381 unsigned int dst_pitch = sysfb->fb_pitch; in drm_sysfb_plane_helper_atomic_disable() local
398 dst_vmap += drm_fb_clip_offset(dst_pitch, dst_format, &dst_clip); in drm_sysfb_plane_helper_atomic_disable()
401 dst_vmap += dst_pitch; in drm_sysfb_plane_helper_atomic_disable()
/linux/drivers/gpu/drm/i915/gem/selftests/
H A Di915_gem_client_blt.c150 u32 src_pitch, dst_pitch; in prepare_blit() local
181 dst_pitch = t->width; /* in dwords */ in prepare_blit()
189 dst_pitch *= 4; /* in bytes */ in prepare_blit()
194 *cs++ = src_4t | dst_4t | BLT_DEPTH_32 | dst_pitch; in prepare_blit()
233 dst_pitch = t->width * 4; in prepare_blit()
236 dst_pitch /= 4; in prepare_blit()
240 *cs++ = BLT_DEPTH_32 | BLT_ROP_SRC_COPY | dst_pitch; in prepare_blit()
/linux/drivers/gpu/drm/clients/
H A Ddrm_log.c73 static void drm_log_blit(struct iosys_map *dst, unsigned int dst_pitch, in drm_log_blit() argument
79 drm_draw_blit16(dst, dst_pitch, src, src_pitch, height, width, scale, color); in drm_log_blit()
82 drm_draw_blit24(dst, dst_pitch, src, src_pitch, height, width, scale, color); in drm_log_blit()
85 drm_draw_blit32(dst, dst_pitch, src, src_pitch, height, width, scale, color); in drm_log_blit()
/linux/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_stdu.c504 s32 src_pitch, dst_pitch; in vmw_stdu_bo_cpu_commit() local
523 dst_pitch = ddirty->pitch; in vmw_stdu_bo_cpu_commit()
525 dst_offset = ddirty->fb_top * dst_pitch + ddirty->fb_left * stdu->cpp; in vmw_stdu_bo_cpu_commit()
527 (void) vmw_bo_cpu_blit(dst_bo, dst_offset, dst_pitch, in vmw_stdu_bo_cpu_commit()
1179 s32 src_pitch, dst_pitch; in vmw_stdu_bo_populate_update_cpu() local
1192 dst_pitch = stdu->display_srf->metadata.base_size.width * stdu->cpp; in vmw_stdu_bo_populate_update_cpu()
1193 dst_offset = bb->y1 * dst_pitch + bb->x1 * stdu->cpp; in vmw_stdu_bo_populate_update_cpu()
1200 (void) vmw_bo_cpu_blit(dst_bo, dst_offset, dst_pitch, src_bo, in vmw_stdu_bo_populate_update_cpu()
/linux/drivers/gpu/drm/solomon/
H A Dssd130x.c1009 unsigned int dst_pitch; in ssd130x_fb_blit_rect() local
1016 dst_pitch = DIV_ROUND_UP(drm_rect_width(rect), 8); in ssd130x_fb_blit_rect()
1019 drm_fb_xrgb8888_to_mono(&dst, &dst_pitch, vmap, fb, rect, fmtcnv_state); in ssd130x_fb_blit_rect()
1033 unsigned int dst_pitch; in ssd132x_fb_blit_rect() local
1042 dst_pitch = drm_rect_width(rect); in ssd132x_fb_blit_rect()
1045 drm_fb_xrgb8888_to_gray8(&dst, &dst_pitch, vmap, fb, rect, fmtcnv_state); in ssd132x_fb_blit_rect()
1059 unsigned int dst_pitch; in ssd133x_fb_blit_rect() local
1066 dst_pitch = drm_format_info_min_pitch(fi, 0, drm_rect_width(rect)); in ssd133x_fb_blit_rect()
1069 drm_fb_xrgb8888_to_rgb332(&dst, &dst_pitch, vmap, fb, rect, fmtcnv_state); in ssd133x_fb_blit_rect()
1071 ssd133x_update_rect(ssd130x, rect, data_array, dst_pitch); in ssd133x_fb_blit_rect()
/linux/drivers/gpu/drm/sitronix/
H A Dst7920.c323 unsigned int dst_pitch; in st7920_fb_blit_rect() local
330 dst_pitch = DIV_ROUND_UP(drm_rect_width(rect), 8); in st7920_fb_blit_rect()
333 drm_fb_xrgb8888_to_mono(&dst, &dst_pitch, vmap, fb, rect, fmtcnv_state); in st7920_fb_blit_rect()