• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/

Lines Matching defs:next_line

24 void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line,
51 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
52 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
54 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2);
64 l = next_line - w * 4;
74 0xff00ff00, height, next_line - BPL * 2);
76 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
77 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
82 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2);
90 l = next_line - w * 4;
101 0xff00ff, colsize, -next_line - BPL * 2);
110 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
111 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
144 src += next_line;
145 dst += next_line;
152 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
153 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
186 src -= next_line;
187 dst -= next_line;
193 void atafb_iplan2p2_fillrect(struct fb_info *info, u_long next_line, u32 color,
200 dest = (u32 *)(info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL));
208 dest8 += next_line;
218 u32 off = next_line - rows * BPL * 2;
234 dest8 += next_line;
239 void atafb_iplan2p2_linefill(struct fb_info *info, u_long next_line,
248 dest = (u32 *)(info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL));