Lines Matching refs:dy
403 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_fillrect()
408 if (modded.dy + modded.height > vyres) in pm3fb_fillrect()
409 modded.height = vyres - modded.dy; in pm3fb_fillrect()
428 PM3RectanglePosition_YOffset(modded.dy)); in pm3fb_fillrect()
461 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_copyarea()
470 if (modded.dy + modded.height > vyres) in pm3fb_copyarea()
471 modded.height = vyres - modded.dy; in pm3fb_copyarea()
474 o_y = modded.sy - modded.dy; /*(sy > dy ) ? (sy - dy) : (dy - sy); */ in pm3fb_copyarea()
488 ((modded.dy & 0x0fff) << 16) | (modded.dx & 0x0fff)); in pm3fb_copyarea()
490 (((modded.dy + modded.height) & 0x0fff) << 16) | in pm3fb_copyarea()
499 PM3RectanglePosition_YOffset(modded.dy)); in pm3fb_copyarea()
503 ((modded.sy > modded.dy) ? PM3Render2D_YPositive : 0) | in pm3fb_copyarea()
563 ((image->dy & 0x0fff) << 16) | (image->dx & 0x0fff)); in pm3fb_imageblit()
565 (((image->dy + image->height) & 0x0fff) << 16) | in pm3fb_imageblit()
569 PM3RectanglePosition_YOffset(image->dy)); in pm3fb_imageblit()
642 int y = cursor->image.dy - info->var.yoffset; in pm3fb_cursor()