Lines Matching refs:dx
410 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_fillrect()
413 if (modded.dx + modded.width > vxres) in pm3fb_fillrect()
414 modded.width = vxres - modded.dx; in pm3fb_fillrect()
434 PM3RectanglePosition_XOffset(modded.dx) | in pm3fb_fillrect()
468 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_copyarea()
473 if (modded.dx + modded.width > vxres) in pm3fb_copyarea()
474 modded.width = vxres - modded.dx; in pm3fb_copyarea()
480 o_x = modded.sx - modded.dx; /*(sx > dx ) ? (sx - dx) : (dx - sx); */ in pm3fb_copyarea()
495 ((modded.dy & 0x0fff) << 16) | (modded.dx & 0x0fff)); in pm3fb_copyarea()
498 ((modded.dx + modded.width) & 0x0fff)); in pm3fb_copyarea()
505 PM3RectanglePosition_XOffset(modded.dx - x_align) | in pm3fb_copyarea()
509 ((modded.sx > modded.dx) ? PM3Render2D_XPositive : 0) | in pm3fb_copyarea()
570 ((image->dy & 0x0fff) << 16) | (image->dx & 0x0fff)); in pm3fb_imageblit()
573 ((image->dx + image->width) & 0x0fff)); in pm3fb_imageblit()
575 PM3RectanglePosition_XOffset(image->dx) | in pm3fb_imageblit()
648 int x = cursor->image.dx - info->var.xoffset; in pm3fb_cursor()