Lines Matching refs:total_height
130 int total_height; member
517 cells = qemu_malloc(s->width * s->total_height * sizeof(TextCell)); in text_console_resize()
518 for(y = 0; y < s->total_height; y++) { in text_console_resize()
567 y1 = (s->y_base + y) % s->total_height; in update_xy()
570 y2 += s->total_height; in update_xy()
596 y1 = (s->y_base + s->y) % s->total_height; in console_show_cursor()
599 y += s->total_height; in console_show_cursor()
640 if (++y1 == s->total_height) in console_refresh()
660 if (++s->y_displayed == s->total_height) in console_scroll()
666 if (i > s->total_height - s->height) in console_scroll()
667 i = s->total_height - s->height; in console_scroll()
670 y1 += s->total_height; in console_scroll()
675 s->y_displayed = s->total_height - 1; in console_scroll()
691 if (++s->y_displayed == s->total_height) in console_put_lf()
694 if (++s->y_base == s->total_height) in console_put_lf()
696 if (s->backscroll_height < s->total_height) in console_put_lf()
698 y1 = (s->y_base + s->height - 1) % s->total_height; in console_put_lf()
827 int y1 = (s->y_base + y) % s->total_height; in console_clear_xy()
880 y1 = (s->y_base + s->y) % s->total_height; in console_putchar()
1350 s->total_height = DEFAULT_BACKSCROLL; in text_console_do_init()