• 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

31 void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line,
58 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
59 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
61 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2);
71 l = next_line - w * 4;
81 0xff00ff00, height, next_line - BPL * 2);
83 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
84 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
89 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2);
97 l = next_line - w * 4;
108 0xff00ff, colsize, -next_line - BPL * 2);
117 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
118 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
172 src += next_line;
173 dst += next_line;
180 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
181 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
235 src -= next_line;
236 dst -= next_line;
242 void atafb_iplan2p8_fillrect(struct fb_info *info, u_long next_line, u32 color,
249 dest = (u32 *)(info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL));
257 dest8 += next_line;
267 u32 off = next_line - rows * BPL * 2;
283 dest8 += next_line;
288 void atafb_iplan2p8_linefill(struct fb_info *info, u_long next_line,
297 dest = (u32 *)(info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL));