Home
last modified time | relevance | path

Searched refs:y_base (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/ui/
H A Dconsole-vc.c58 int y_base; member
204 y1 = (s->y_base + s->y) % s->total_height; in console_show_cursor()
260 if (s->y_displayed == s->y_base) in console_scroll()
270 y1 = s->y_base - i; in console_scroll()
357 src = (s->y_base + s->text_y[0]) * s->width; in text_console_update()
429 if (s->y_displayed == s->y_base) { in vc_put_lf()
433 if (++s->y_base == s->total_height) in vc_put_lf()
434 s->y_base = 0; in vc_put_lf()
437 y1 = (s->y_base + s->height - 1) % s->total_height; in vc_put_lf()
444 if (s->y_displayed == s->y_base) { in vc_put_lf()
[all …]
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/
H A Ddraw.py280 def transform_point_coords(point, x_base, y_base, \ argument
283 y = (point[1] - y_base) * -yscale + y_trans + chart_bounds[3]