Home | History | Annotate | Download | only in qemu

Lines Matching refs:total_height

163     int total_height;
561 cells = qemu_malloc(s->width * s->total_height * sizeof(TextCell));
562 for(y = 0; y < s->total_height; y++) {
611 y1 = (s->y_base + y) % s->total_height;
614 y2 += s->total_height;
640 y1 = (s->y_base + s->y) % s->total_height;
643 y += s->total_height;
684 if (++y1 == s->total_height)
704 if (++s->y_displayed == s->total_height)
710 if (i > s->total_height - s->height)
711 i = s->total_height - s->height;
714 y1 += s->total_height;
719 s->y_displayed = s->total_height - 1;
735 if (++s->y_displayed == s->total_height)
738 if (++s->y_base == s->total_height)
740 if (s->backscroll_height < s->total_height)
742 y1 = (s->y_base + s->height - 1) % s->total_height;
871 int y1 = (s->y_base + y) % s->total_height;
923 y1 = (s->y_base + s->y) % s->total_height;
1517 s->total_height = DEFAULT_BACKSCROLL;