Home
last modified time | relevance | path

Searched refs:s_pitch (Results 1 – 11 of 11) sorted by relevance

/Linux-v5.10/drivers/video/fbdev/core/
Dsoftcursor.c27 unsigned int i, size, dsize, s_pitch, d_pitch; in soft_cursor() local
34 s_pitch = (cursor->image.width + 7) >> 3; in soft_cursor()
35 dsize = s_pitch * cursor->image.height; in soft_cursor()
51 d_pitch = (s_pitch + scan_align) & ~scan_align; in soft_cursor()
72 fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, image->height); in soft_cursor()
Dbitblit.c79 u32 d_pitch, u32 s_pitch, u32 cellsize, in bit_putcs_aligned() argument
102 dst += s_pitch; in bit_putcs_aligned()
111 u32 s_pitch, u32 cellsize, in bit_putcs_unaligned() argument
134 dst += (shift_low >= 8) ? s_pitch : s_pitch - 1; in bit_putcs_unaligned()
Dfbcon_ud.c87 u32 d_pitch, u32 s_pitch, u32 cellsize, in ud_putcs_aligned() argument
110 dst += s_pitch; in ud_putcs_aligned()
119 u32 s_pitch, u32 cellsize, in ud_putcs_unaligned() argument
142 dst += (shift_low >= 8) ? s_pitch : s_pitch - 1; in ud_putcs_unaligned()
Dfbcon_cw.c85 u32 d_pitch, u32 s_pitch, u32 cellsize, in cw_putcs_aligned() argument
Dfbcon_ccw.c100 u32 d_pitch, u32 s_pitch, u32 cellsize, in ccw_putcs_aligned() argument
Dfbmem.c114 void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height) in fb_pad_aligned_buffer() argument
116 __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height); in fb_pad_aligned_buffer()
/Linux-v5.10/include/linux/
Dfb.h617 extern void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height);
645 u8 *src, u32 s_pitch, u32 height) in __fb_pad_aligned_buffer() argument
649 d_pitch -= s_pitch; in __fb_pad_aligned_buffer()
653 for (j = 0; j < s_pitch; j++) in __fb_pad_aligned_buffer()
/Linux-v5.10/drivers/video/fbdev/nvidia/
Dnvidia.c558 u32 s_pitch = (cursor->image.width + 7) >> 3; in nvidiafb_cursor() local
564 src = kmalloc_array(s_pitch, cursor->image.height, GFP_ATOMIC); in nvidiafb_cursor()
569 for (i = 0; i < s_pitch * cursor->image.height; i++) in nvidiafb_cursor()
574 for (i = 0; i < s_pitch * cursor->image.height; i++) in nvidiafb_cursor()
579 fb_pad_aligned_buffer(data, d_pitch, src, s_pitch, in nvidiafb_cursor()
/Linux-v5.10/drivers/video/fbdev/riva/
Dfbdev.c1608 u32 s_pitch = (cursor->image.width+7) >> 3; in rivafb_cursor() local
1614 src = kmalloc_array(s_pitch, cursor->image.height, GFP_ATOMIC); in rivafb_cursor()
1619 for (i = 0; i < s_pitch * cursor->image.height; i++) in rivafb_cursor()
1624 for (i = 0; i < s_pitch * cursor->image.height; i++) in rivafb_cursor()
1629 fb_pad_aligned_buffer(data, d_pitch, src, s_pitch, in rivafb_cursor()
/Linux-v5.10/drivers/video/fbdev/intelfb/
Dintelfbdrv.c1618 u32 s_pitch = (ROUND_UP_TO(cursor->image.width, 8) / 8); in intelfb_cursor() local
1619 u32 size = s_pitch * cursor->image.height; in intelfb_cursor()
/Linux-v5.10/drivers/video/fbdev/
Dneofb.c1431 int s_pitch = (image->width * image->depth + 7) >> 3; in neo2200_imageblit() local
1437 d_pitch = (s_pitch + scan_align) & ~scan_align; in neo2200_imageblit()