Lines Matching defs:next_line

23 void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line,
50 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
51 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
53 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2);
63 l = next_line - w * 4;
73 0xff00ff00, height, next_line - BPL * 2);
75 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
76 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
81 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2);
89 l = next_line - w * 4;
100 0xff00ff, colsize, -next_line - BPL * 2);
109 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
110 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
143 src += next_line;
144 dst += next_line;
151 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
152 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
185 src -= next_line;
186 dst -= next_line;
192 void atafb_iplan2p2_fillrect(struct fb_info *info, u_long next_line, u32 color,
199 dest = (u32 *)(info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL));
207 dest8 += next_line;
217 u32 off = next_line - rows * BPL * 2;
233 dest8 += next_line;
238 void atafb_iplan2p2_linefill(struct fb_info *info, u_long next_line,
247 dest = (u32 *)(info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL));