Lines Matching full:y1
193 int y, y1; in console_show_cursor() local
201 y1 = (s->y_base + s->y) % s->total_height; in console_show_cursor()
202 y = y1 - s->y_displayed; in console_show_cursor()
207 c = &s->cells[y1 * s->width + x]; in console_show_cursor()
223 int x, y, y1; in console_refresh() local
234 y1 = s->y_displayed; in console_refresh()
236 c = s->cells + y1 * s->width; in console_refresh()
242 if (++y1 == s->total_height) { in console_refresh()
243 y1 = 0; in console_refresh()
253 int i, y1; in console_scroll() local
267 y1 = s->y_base - i; in console_scroll()
268 if (y1 < 0) in console_scroll()
269 y1 += s->total_height; in console_scroll()
271 if (s->y_displayed == y1) in console_scroll()
420 int x, y1; in vc_put_lf() local
434 y1 = (s->y_base + s->height - 1) % s->total_height; in vc_put_lf()
435 c = &s->cells[y1 * s->width]; in vc_put_lf()
562 int y1, y2; in vc_update_xy() local
569 y1 = (s->y_base + y) % s->total_height; in vc_update_xy()
570 y2 = y1 - s->y_displayed; in vc_update_xy()
578 c = &s->cells[y1 * s->width + x]; in vc_update_xy()
588 int y1 = (s->y_base + y) % s->total_height; in vc_clear_xy() local
592 TextCell *c = &s->cells[y1 * s->width + x]; in vc_clear_xy()
602 int y1; in vc_put_one() local
608 y1 = (s->y_base + s->y) % s->total_height; in vc_put_one()
609 c = &s->cells[y1 * s->width + s->x]; in vc_put_one()