Lines Matching defs:vyres
335 u32 vxres, xoffset, vyres, yoffset;
418 vyres = var->yres_virtual;
421 if (yres > vyres)
422 vyres = yres;
423 if (vxres * vyres > maxmem) {
424 vyres = maxmem / vxres;
425 if (vyres < yres)
428 if (yoffset + yres > vyres)
429 yoffset = vyres - yres;
434 var->yres_virtual = vyres;
900 int x, x2, y2, vxres, vyres, width, height, line_ofs;
904 vyres = info->var.yres_virtual;
906 if (!rect->width || !rect->height || rect->dx > vxres || rect->dy > vyres)
915 y2 = y2 < vyres ? y2 : vyres;
1031 int x, x2, y2, old_dx, old_dy, vxres, vyres;
1037 vyres = info->var.yres_virtual;
1039 if (area->dx > vxres || area->sx > vxres || area->dy > vyres ||
1040 area->sy > vyres)
1056 y2 = y2 < vyres ? y2 : vyres;
1068 if (sx + width > vxres || sy + height > vyres)