Lines Matching refs:vyres
337 u32 vxres, xoffset, vyres, yoffset;
420 vyres = var->yres_virtual;
423 if (yres > vyres)
424 vyres = yres;
425 if (vxres * vyres > maxmem) {
426 vyres = maxmem / vxres;
427 if (vyres < yres)
430 if (yoffset + yres > vyres)
431 yoffset = vyres - yres;
436 var->yres_virtual = vyres;
902 int x, x2, y2, vxres, vyres, width, height, line_ofs;
906 vyres = info->var.yres_virtual;
908 if (!rect->width || !rect->height || rect->dx > vxres || rect->dy > vyres)
917 y2 = y2 < vyres ? y2 : vyres;
1033 int x, x2, y2, old_dx, old_dy, vxres, vyres;
1039 vyres = info->var.yres_virtual;
1041 if (area->dx > vxres || area->sx > vxres || area->dy > vyres ||
1042 area->sy > vyres)
1058 y2 = y2 < vyres ? y2 : vyres;
1070 if (sx + width > vxres || sy + height > vyres)