Lines Matching defs:info
23 void atafb_mfb_copyarea(struct fb_info *info, u_long next_line,
31 src = (u8 *)info->screen_base + sy * (width >> 3);
32 dest = (u8 *)info->screen_base + dy * (width >> 3);
35 src = (u8 *)info->screen_base + sy * next_line + (sx >> 3);
36 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3);
43 src = (u8 *)info->screen_base + (sy + height - 1) * next_line + (sx >> 3);
44 dest = (u8 *)info->screen_base + (dy + height - 1) * next_line + (dx >> 3);
53 void atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color,
59 dest = (u8 *)info->screen_base + sy * next_line + (sx >> 3);
76 void atafb_mfb_linefill(struct fb_info *info, u_long next_line,
83 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3);