s_pitch            79 drivers/video/fbdev/core/bitblit.c 				     u32 d_pitch, u32 s_pitch, u32 cellsize,
s_pitch           102 drivers/video/fbdev/core/bitblit.c 		dst += s_pitch;
s_pitch           111 drivers/video/fbdev/core/bitblit.c 				       u32 s_pitch, u32 cellsize,
s_pitch           134 drivers/video/fbdev/core/bitblit.c 		dst += (shift_low >= 8) ? s_pitch : s_pitch - 1;
s_pitch           100 drivers/video/fbdev/core/fbcon_ccw.c 				    u32 d_pitch, u32 s_pitch, u32 cellsize,
s_pitch            85 drivers/video/fbdev/core/fbcon_cw.c 				    u32 d_pitch, u32 s_pitch, u32 cellsize,
s_pitch            87 drivers/video/fbdev/core/fbcon_ud.c 				    u32 d_pitch, u32 s_pitch, u32 cellsize,
s_pitch           110 drivers/video/fbdev/core/fbcon_ud.c 		dst += s_pitch;
s_pitch           119 drivers/video/fbdev/core/fbcon_ud.c 				      u32 s_pitch, u32 cellsize,
s_pitch           142 drivers/video/fbdev/core/fbcon_ud.c 		dst += (shift_low >= 8) ? s_pitch : s_pitch - 1;
s_pitch           113 drivers/video/fbdev/core/fbmem.c void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
s_pitch           115 drivers/video/fbdev/core/fbmem.c 	__fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
s_pitch            27 drivers/video/fbdev/core/softcursor.c 	unsigned int i, size, dsize, s_pitch, d_pitch;
s_pitch            34 drivers/video/fbdev/core/softcursor.c 	s_pitch = (cursor->image.width + 7) >> 3;
s_pitch            35 drivers/video/fbdev/core/softcursor.c 	dsize = s_pitch * cursor->image.height;
s_pitch            51 drivers/video/fbdev/core/softcursor.c 	d_pitch = (s_pitch + scan_align) & ~scan_align;
s_pitch            72 drivers/video/fbdev/core/softcursor.c 	fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, image->height);
s_pitch          1618 drivers/video/fbdev/intelfb/intelfbdrv.c 		u32 s_pitch = (ROUND_UP_TO(cursor->image.width, 8) / 8);
s_pitch          1619 drivers/video/fbdev/intelfb/intelfbdrv.c 		u32 size = s_pitch * cursor->image.height;
s_pitch          1432 drivers/video/fbdev/neofb.c 	int s_pitch = (image->width * image->depth + 7) >> 3;
s_pitch          1438 drivers/video/fbdev/neofb.c 	d_pitch = (s_pitch + scan_align) & ~scan_align;
s_pitch           563 drivers/video/fbdev/nvidia/nvidia.c 		u32 s_pitch = (cursor->image.width + 7) >> 3;
s_pitch           569 drivers/video/fbdev/nvidia/nvidia.c 		src = kmalloc_array(s_pitch, cursor->image.height, GFP_ATOMIC);
s_pitch           574 drivers/video/fbdev/nvidia/nvidia.c 				for (i = 0; i < s_pitch * cursor->image.height; i++)
s_pitch           579 drivers/video/fbdev/nvidia/nvidia.c 				for (i = 0; i < s_pitch * cursor->image.height; i++)
s_pitch           584 drivers/video/fbdev/nvidia/nvidia.c 			fb_pad_aligned_buffer(data, d_pitch, src, s_pitch,
s_pitch          1612 drivers/video/fbdev/riva/fbdev.c 		u32 s_pitch = (cursor->image.width+7) >> 3;
s_pitch          1618 drivers/video/fbdev/riva/fbdev.c 		src = kmalloc_array(s_pitch, cursor->image.height, GFP_ATOMIC);
s_pitch          1623 drivers/video/fbdev/riva/fbdev.c 				for (i = 0; i < s_pitch * cursor->image.height; i++)
s_pitch          1628 drivers/video/fbdev/riva/fbdev.c 				for (i = 0; i < s_pitch * cursor->image.height; i++)
s_pitch          1633 drivers/video/fbdev/riva/fbdev.c 			fb_pad_aligned_buffer(data, d_pitch, src, s_pitch,
s_pitch           619 include/linux/fb.h extern void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height);
s_pitch           646 include/linux/fb.h 					   u8 *src, u32 s_pitch, u32 height)
s_pitch           650 include/linux/fb.h 	d_pitch -= s_pitch;
s_pitch           654 include/linux/fb.h 		for (j = 0; j < s_pitch; j++)