Lines Matching defs:next_line

30 void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line,
57 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
58 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
60 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2);
70 l = next_line - w * 4;
80 0xff00ff00, height, next_line - BPL * 2);
82 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
83 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
88 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2);
96 l = next_line - w * 4;
107 0xff00ff, colsize, -next_line - BPL * 2);
116 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
117 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
171 src += next_line;
172 dst += next_line;
179 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
180 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
234 src -= next_line;
235 dst -= next_line;
241 void atafb_iplan2p8_fillrect(struct fb_info *info, u_long next_line, u32 color,
248 dest = (u32 *)(info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL));
256 dest8 += next_line;
266 u32 off = next_line - rows * BPL * 2;
282 dest8 += next_line;
287 void atafb_iplan2p8_linefill(struct fb_info *info, u_long next_line,
296 dest = (u32 *)(info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL));