Lines Matching refs:next_line
24 void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, in atafb_mfb_copyarea() argument
31 if (sx == 0 && dx == 0 && width == next_line) { in atafb_mfb_copyarea()
36 src = (u8 *)info->screen_base + sy * next_line + (sx >> 3); in atafb_mfb_copyarea()
37 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3); in atafb_mfb_copyarea()
40 src += next_line; in atafb_mfb_copyarea()
41 dest += next_line; in atafb_mfb_copyarea()
44 src = (u8 *)info->screen_base + (sy + height - 1) * next_line + (sx >> 3); in atafb_mfb_copyarea()
45 dest = (u8 *)info->screen_base + (dy + height - 1) * next_line + (dx >> 3); in atafb_mfb_copyarea()
48 src -= next_line; in atafb_mfb_copyarea()
49 dest -= next_line; in atafb_mfb_copyarea()
54 void atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color, in atafb_mfb_fillrect() argument
60 dest = (u8 *)info->screen_base + sy * next_line + (sx >> 3); in atafb_mfb_fillrect()
62 if (sx == 0 && width == next_line) { in atafb_mfb_fillrect()
68 for (rows = height; rows--; dest += next_line) { in atafb_mfb_fillrect()
77 void atafb_mfb_linefill(struct fb_info *info, u_long next_line, in atafb_mfb_linefill() argument
84 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3); in atafb_mfb_linefill()