Lines Matching refs:dy

635 	u32 fgcolor, bgcolor, dx, dy, width, height, vxres, vyres, pixelmask;  local
645 dy = image->dy;
657 if (dx > vxres || dy > vyres)
661 if (dy + height > vyres)
662 height = vyres - dy;
688 pos = dy * line_length;
848 u32 color, dx, dy, width, height, vxres, vyres; local
855 dy = image->dy;
863 if (dx > vxres || dy > vyres)
867 if (dy + height > vyres)
868 height = vyres - dy;
872 pos = dy * line_length + (dx * 4);
935 u32 dx, dy, width, height, vxres, vyres, color; local
941 dy = rect->dy;
951 if (dx > vxres || dy > vyres || !width || !height)
955 if (dy + height > vyres)
956 height = vyres - dy;
958 pos = dy * line_length + dx * (is8bpp ? 1 : 4);
1063 copyarea_line_8bpp(struct fb_info *info, u32 dy, u32 sy, argument
1077 if (sy < dy) {
1079 dpos = (dy + height) * width;
1091 dpos = dy * width;
1108 copyarea_line_32bpp(struct fb_info *info, u32 dy, u32 sy, argument
1125 if (sy < dy) {
1127 dst = tga_fb + (dy + height) * width * 4;
1139 dst = tga_fb + dy * width * 4;
1157 copyarea_8bpp(struct fb_info *info, u32 dx, u32 dy, u32 sx, u32 sy, argument
1176 if (dy > sy) {
1177 dy += height - 1;
1181 backward = dy == sy && dx > sx && dx < sx + width;
1185 depos = dy * line_length + dx;
1268 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1272 dy = area->dy;
1282 if (dx > vxres || sx > vxres || dy > vyres || sy > vyres)
1288 if (dy + height > vyres)
1289 height = vyres - dy;
1300 copyarea_line_8bpp(info, dy, sy, height, width);
1302 copyarea_line_32bpp(info, dy, sy, height, width);
1312 copyarea_8bpp(info, dx, dy, sx, sy, height,