Lines Matching refs:dy

623 	u32 fgcolor, bgcolor, dx, dy, width, height, vxres, vyres, pixelmask;  local
633 dy = image->dy;
645 if (dx > vxres || dy > vyres)
649 if (dy + height > vyres)
650 height = vyres - dy;
676 pos = dy * line_length;
836 u32 color, dx, dy, width, height, vxres, vyres; local
843 dy = image->dy;
851 if (dx > vxres || dy > vyres)
855 if (dy + height > vyres)
856 height = vyres - dy;
860 pos = dy * line_length + (dx * 4);
923 u32 dx, dy, width, height, vxres, vyres, color; local
929 dy = rect->dy;
939 if (dx > vxres || dy > vyres || !width || !height)
943 if (dy + height > vyres)
944 height = vyres - dy;
946 pos = dy * line_length + dx * (is8bpp ? 1 : 4);
1051 copyarea_line_8bpp(struct fb_info *info, u32 dy, u32 sy, argument
1065 if (sy < dy) {
1067 dpos = (dy + height) * width;
1079 dpos = dy * width;
1096 copyarea_line_32bpp(struct fb_info *info, u32 dy, u32 sy, argument
1113 if (sy < dy) {
1115 dst = tga_fb + (dy + height) * width * 4;
1127 dst = tga_fb + dy * width * 4;
1145 copyarea_8bpp(struct fb_info *info, u32 dx, u32 dy, u32 sx, u32 sy, argument
1164 if (dy > sy) {
1165 dy += height - 1;
1169 backward = dy == sy && dx > sx && dx < sx + width;
1173 depos = dy * line_length + dx;
1256 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1260 dy = area->dy;
1270 if (dx > vxres || sx > vxres || dy > vyres || sy > vyres)
1276 if (dy + height > vyres)
1277 height = vyres - dy;
1288 copyarea_line_8bpp(info, dy, sy, height, width);
1290 copyarea_line_32bpp(info, dy, sy, height, width);
1300 copyarea_8bpp(info, dx, dy, sx, sy, height,