Lines Matching refs:next_line

24 void atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line,  in atafb_iplan2p4_copyarea()  argument
51 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
52 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
54 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2); in atafb_iplan2p4_copyarea()
64 l = next_line - w * 4; in atafb_iplan2p4_copyarea()
74 0xff00ff00, height, next_line - BPL * 2); in atafb_iplan2p4_copyarea()
76 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
77 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
82 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2); in atafb_iplan2p4_copyarea()
90 l = next_line - w * 4; in atafb_iplan2p4_copyarea()
101 0xff00ff, colsize, -next_line - BPL * 2); in atafb_iplan2p4_copyarea()
110 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
111 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
151 src += next_line; in atafb_iplan2p4_copyarea()
152 dst += next_line; in atafb_iplan2p4_copyarea()
159 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
160 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL); in atafb_iplan2p4_copyarea()
200 src -= next_line; in atafb_iplan2p4_copyarea()
201 dst -= next_line; in atafb_iplan2p4_copyarea()
207 void atafb_iplan2p4_fillrect(struct fb_info *info, u_long next_line, u32 color, in atafb_iplan2p4_fillrect() argument
214 dest = (u32 *)(info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL)); in atafb_iplan2p4_fillrect()
222 dest8 += next_line; in atafb_iplan2p4_fillrect()
232 u32 off = next_line - rows * BPL * 2; in atafb_iplan2p4_fillrect()
248 dest8 += next_line; in atafb_iplan2p4_fillrect()
253 void atafb_iplan2p4_linefill(struct fb_info *info, u_long next_line, in atafb_iplan2p4_linefill() argument
262 dest = (u32 *)(info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL)); in atafb_iplan2p4_linefill()