Lines Matching refs:x2
205 s32 x2, y2; /* bottom right corner, exclusive */ member
274 int x1, y1, x2, y2; member
373 synthvid_update(struct fb_info *info, int x1, int y1, int x2, int y2) in synthvid_update() argument
379 if (x2 == INT_MAX) in synthvid_update()
380 x2 = info->var.xres; in synthvid_update()
389 msg.dirt.rect[0].x1 = (x1 > x2) ? 0 : x1; in synthvid_update()
391 msg.dirt.rect[0].x2 = in synthvid_update()
392 (x2 < x1 || x2 > info->var.xres) ? info->var.xres : x2; in synthvid_update()
716 int x1, x2, y1, y2; in hvfb_update_work() local
725 x2 = par->x2; in hvfb_update_work()
731 par->x2 = par->y2 = 0; in hvfb_update_work()
735 if (x1 > info->var.xres || x2 > info->var.xres || in hvfb_update_work()
736 y1 > info->var.yres || y2 > info->var.yres || x2 <= x1) in hvfb_update_work()
745 (x2 - x1) * screen_depth / 8); in hvfb_update_work()
749 synthvid_update(info, x1, y1, x2, y2); in hvfb_update_work()
760 int x2 = x1 + w; in hvfb_ondemand_refresh_throttle() local
768 par->x2 = max_t(int, par->x2, x2); in hvfb_ondemand_refresh_throttle()
1135 par->x2 = par->y2 = 0; in hvfb_probe()