| /linux-4.4.14/drivers/video/console/ | 
| 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_ccw.c | 100 				    u32 d_pitch, u32 s_pitch, u32 cellsize,  in ccw_putcs_aligned()  argument
  | 
| D | fbcon_cw.c | 85 				    u32 d_pitch, u32 s_pitch, u32 cellsize,  in cw_putcs_aligned()  argument
  | 
| /linux-4.4.14/include/linux/ | 
| D | fb.h | 627 extern void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height); 646 					   u8 *src, u32 s_pitch, u32 height)  in __fb_pad_aligned_buffer()  argument 650 	d_pitch -= s_pitch;  in __fb_pad_aligned_buffer() 654 		for (j = 0; j < s_pitch; j++)  in __fb_pad_aligned_buffer()
  | 
| /linux-4.4.14/drivers/video/fbdev/nvidia/ | 
| D | nvidia.c | 563 		u32 s_pitch = (cursor->image.width + 7) >> 3;  in nvidiafb_cursor()  local 569 		src = kmalloc(s_pitch * cursor->image.height, GFP_ATOMIC);  in nvidiafb_cursor() 574 				for (i = 0; i < s_pitch * cursor->image.height; i++)  in nvidiafb_cursor() 579 				for (i = 0; i < s_pitch * cursor->image.height; i++)  in nvidiafb_cursor() 584 			fb_pad_aligned_buffer(data, d_pitch, src, s_pitch,  in nvidiafb_cursor()
  | 
| /linux-4.4.14/drivers/video/fbdev/riva/ | 
| D | fbdev.c | 1612 		u32 s_pitch = (cursor->image.width+7) >> 3;  in rivafb_cursor()  local 1618 		src = kmalloc(s_pitch * cursor->image.height, GFP_ATOMIC);  in rivafb_cursor() 1623 				for (i = 0; i < s_pitch * cursor->image.height; i++)  in rivafb_cursor() 1628 				for (i = 0; i < s_pitch * cursor->image.height; i++)  in rivafb_cursor() 1633 			fb_pad_aligned_buffer(data, d_pitch, src, s_pitch,  in rivafb_cursor()
  | 
| /linux-4.4.14/drivers/video/fbdev/intelfb/ | 
| D | intelfbdrv.c | 1624 		u32 s_pitch = (ROUND_UP_TO(cursor->image.width, 8) / 8);  in intelfb_cursor()  local 1625 		u32 size = s_pitch * cursor->image.height;  in intelfb_cursor()
  | 
| /linux-4.4.14/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()
  | 
| /linux-4.4.14/drivers/video/fbdev/core/ | 
| D | fbmem.c | 118 void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)  in fb_pad_aligned_buffer()  argument 120 	__fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);  in fb_pad_aligned_buffer()
  |