Lines Matching refs:dy
410 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_fillrect()
415 if (modded.dy + modded.height > vyres) in pm3fb_fillrect()
416 modded.height = vyres - modded.dy; in pm3fb_fillrect()
435 PM3RectanglePosition_YOffset(modded.dy)); in pm3fb_fillrect()
468 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_copyarea()
477 if (modded.dy + modded.height > vyres) in pm3fb_copyarea()
478 modded.height = vyres - modded.dy; in pm3fb_copyarea()
481 o_y = modded.sy - modded.dy; /*(sy > dy ) ? (sy - dy) : (dy - sy); */ in pm3fb_copyarea()
495 ((modded.dy & 0x0fff) << 16) | (modded.dx & 0x0fff)); in pm3fb_copyarea()
497 (((modded.dy + modded.height) & 0x0fff) << 16) | in pm3fb_copyarea()
506 PM3RectanglePosition_YOffset(modded.dy)); in pm3fb_copyarea()
510 ((modded.sy > modded.dy) ? PM3Render2D_YPositive : 0) | in pm3fb_copyarea()
570 ((image->dy & 0x0fff) << 16) | (image->dx & 0x0fff)); in pm3fb_imageblit()
572 (((image->dy + image->height) & 0x0fff) << 16) | in pm3fb_imageblit()
576 PM3RectanglePosition_YOffset(image->dy)); in pm3fb_imageblit()
649 int y = cursor->image.dy - info->var.yoffset; in pm3fb_cursor()