Lines Matching refs:topscan
47 static int topscan; variable
81 (xstart << 16) | ((ystart + topscan) & 0x3ff); in newport_render_background()
83 ((xend + 7) << 16) | ((yend + topscan + 15) & 0x3ff); in newport_render_background()
152 ystart = ((ystart << 4) + topscan) & 0x3ff; in newport_clear_lines()
153 yend = ((yend << 4) + topscan + 15) & 0x3ff; in newport_clear_lines()
189 topscan = 0; in newport_reset()
190 npregs->cset.topscan = 0x3ff; in newport_reset()
354 int ystart = ((sy << 4) + topscan) & 0x3ff; in newport_clear()
355 int yend = (((sy + height) << 4) + topscan - 1) & 0x3ff; in newport_clear()
392 npregs->set.xystarti = (xpos << 16) | ((ypos + topscan) & 0x3ff); in newport_putc()
433 (xpos << 16) | ((ypos + topscan) & 0x3ff); in newport_putcs()
470 topscan = 0; in newport_switch()
471 npregs->cset.topscan = 0x3ff; in newport_switch()
599 topscan = (topscan + (lines << 4)) & 0x3ff; in newport_scroll()
604 topscan = (topscan + (-lines << 4)) & 0x3ff; in newport_scroll()
608 npregs->cset.topscan = (topscan - 1) & 0x3ff; in newport_scroll()
698 ys = ((sy << 4) + topscan) & 0x3ff; in newport_bmove()
699 ye = (((sy + h) << 4) - 1 + topscan) & 0x3ff; in newport_bmove()