Lines Matching refs:yend
69 int xend, int yend, int ci) in newport_render_background() argument
80 ((xend + 7) << 16) | ((yend + topscan + 15) & 0x3ff); in newport_render_background()
134 int yend, int ci) in newport_clear_screen() argument
146 npregs->go.xyendi = (xend << 16) | yend; in newport_clear_screen()
149 static inline void newport_clear_lines(int ystart, int yend, int ci) in newport_clear_lines() argument
152 yend = ((yend << 4) + topscan + 15) & 0x3ff; in newport_clear_lines()
153 newport_clear_screen(0, ystart, 1280 + 63, yend, ci); in newport_clear_lines()
354 int yend = (((sy + 1) << 4) + topscan - 1) & 0x3ff; in newport_clear() local
359 if (ystart < yend) { in newport_clear()
360 newport_clear_screen(sx << 3, ystart, xend, yend, in newport_clear()
365 newport_clear_screen(sx << 3, 0, xend, yend, in newport_clear()