Lines Matching refs:vxres
381 int vxres, vyres; in pm3fb_fillrect() local
398 vxres = info->var.xres_virtual; in pm3fb_fillrect()
404 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_fillrect()
407 if (modded.dx + modded.width > vxres) in pm3fb_fillrect()
408 modded.width = vxres - modded.dx; in pm3fb_fillrect()
445 u32 vxres, vyres; in pm3fb_copyarea() local
457 vxres = info->var.xres_virtual; in pm3fb_copyarea()
461 modded.sx >= vxres || modded.sy >= vyres || in pm3fb_copyarea()
462 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_copyarea()
465 if (modded.sx + modded.width > vxres) in pm3fb_copyarea()
466 modded.width = vxres - modded.sx; in pm3fb_copyarea()
467 if (modded.dx + modded.width > vxres) in pm3fb_copyarea()
468 modded.width = vxres - modded.dx; in pm3fb_copyarea()