Lines Matching refs:vxres
1733 int vxres, vyres; in cirrusfb_fillrect() local
1746 vxres = info->var.xres_virtual; in cirrusfb_fillrect()
1752 modded.dx >= vxres || modded.dy >= vyres) in cirrusfb_fillrect()
1755 if (modded.dx + modded.width > vxres) in cirrusfb_fillrect()
1756 modded.width = vxres - modded.dx; in cirrusfb_fillrect()
1772 u32 vxres, vyres; in cirrusfb_copyarea() local
1783 vxres = info->var.xres_virtual; in cirrusfb_copyarea()
1788 modded.sx >= vxres || modded.sy >= vyres || in cirrusfb_copyarea()
1789 modded.dx >= vxres || modded.dy >= vyres) in cirrusfb_copyarea()
1792 if (modded.sx + modded.width > vxres) in cirrusfb_copyarea()
1793 modded.width = vxres - modded.sx; in cirrusfb_copyarea()
1794 if (modded.dx + modded.width > vxres) in cirrusfb_copyarea()
1795 modded.width = vxres - modded.dx; in cirrusfb_copyarea()