/linux-6.1.9/drivers/video/fbdev/core/ |
D | softcursor.c | 27 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()
|
D | bitblit.c | 79 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()
|
D | fbcon_ud.c | 87 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()
|
D | fbcon_cw.c | 85 u32 d_pitch, u32 s_pitch, u32 cellsize, in cw_putcs_aligned() argument
|
D | fbcon_ccw.c | 100 u32 d_pitch, u32 s_pitch, u32 cellsize, in ccw_putcs_aligned() argument
|
D | fbmem.c | 117 void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height) in fb_pad_aligned_buffer() argument 119 __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height); in fb_pad_aligned_buffer()
|
/linux-6.1.9/include/linux/ |
D | fb.h | 623 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-6.1.9/drivers/staging/sm750fb/ |
D | sm750.h | 68 u32 s_base, u32 s_pitch,
|
/linux-6.1.9/drivers/video/fbdev/nvidia/ |
D | nvidia.c | 559 u32 s_pitch = (cursor->image.width + 7) >> 3; in nvidiafb_cursor() local 565 src = kmalloc_array(s_pitch, cursor->image.height, GFP_ATOMIC); in nvidiafb_cursor() 570 for (i = 0; i < s_pitch * cursor->image.height; i++) in nvidiafb_cursor() 575 for (i = 0; i < s_pitch * cursor->image.height; i++) in nvidiafb_cursor() 580 fb_pad_aligned_buffer(data, d_pitch, src, s_pitch, in nvidiafb_cursor()
|
/linux-6.1.9/drivers/video/fbdev/riva/ |
D | fbdev.c | 1611 u32 s_pitch = (cursor->image.width+7) >> 3; in rivafb_cursor() local 1617 src = kmalloc_array(s_pitch, cursor->image.height, GFP_ATOMIC); in rivafb_cursor() 1622 for (i = 0; i < s_pitch * cursor->image.height; i++) in rivafb_cursor() 1627 for (i = 0; i < s_pitch * cursor->image.height; i++) in rivafb_cursor() 1632 fb_pad_aligned_buffer(data, d_pitch, src, s_pitch, in rivafb_cursor()
|
/linux-6.1.9/drivers/video/fbdev/intelfb/ |
D | intelfbdrv.c | 1623 u32 s_pitch = (ROUND_UP_TO(cursor->image.width, 8) / 8); in intelfb_cursor() local 1624 u32 size = s_pitch * cursor->image.height; in intelfb_cursor()
|
/linux-6.1.9/drivers/video/fbdev/ |
D | neofb.c | 1432 int s_pitch = (image->width * image->depth + 7) >> 3; in neo2200_imageblit() local 1438 d_pitch = (s_pitch + scan_align) & ~scan_align; in neo2200_imageblit()
|