Home | History | Annotate | Download | only in gio

Lines Matching defs:from_y

213 rex_copy_rect(struct light_devconfig *dc, int from_x, int from_y, int to_x,
219 dy = from_y - to_y;
222 if (to_y > from_y) {
244 rex_fill_rect(struct light_devconfig *dc, int from_x, int from_y, int to_x,
250 rex_write(dc, REX_PAGE0_SET, REX_P0REG_YSTARTI, from_y);
438 int from_x, from_y, to_x, to_y, width, height;
441 from_y = row * font->fontheight;
443 to_y = from_y;
447 rex_copy_rect(c, from_x, from_y, to_x, to_y, width, height);
456 int from_x, from_y, to_x, to_y;
459 from_y = row * font->fontheight;
461 to_y = from_y + font->fontheight - 1;
463 rex_fill_rect(c, from_x, from_y, to_x, to_y, attr);
472 int from_x, from_y, to_x, to_y, width, height;
475 from_y = srcrow * font->fontheight;
481 rex_copy_rect(c, from_x, from_y, to_x, to_y, width, height);
490 int from_x, from_y, to_x, to_y;
493 from_y = row * font->fontheight;
495 to_y = from_y + (nrows * font->fontheight) - 1;
497 rex_fill_rect(c, from_x, from_y, to_x, to_y, attr);