Lines Matching refs:sy
1061 copyarea_line_8bpp(struct fb_info *info, u32 dy, u32 sy, argument
1075 if (sy < dy) {
1076 spos = (sy + height) * width;
1088 spos = sy * width;
1106 copyarea_line_32bpp(struct fb_info *info, u32 dy, u32 sy, argument
1123 if (sy < dy) {
1124 src = tga_fb + (sy + height) * width * 4;
1136 src = tga_fb + sy * width * 4;
1155 copyarea_8bpp(struct fb_info *info, u32 dx, u32 dy, u32 sx, u32 sy, argument
1174 if (dy > sy) {
1176 sy += height - 1;
1179 backward = dy == sy && dx > sx && dx < sx + width;
1184 sepos = sy * line_length + sx;
1266 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1274 sy = area->sy;
1280 if (dx > vxres || sx > vxres || dy > vyres || sy > vyres)
1290 if (sx + width > vxres || sy + height > vyres)
1298 copyarea_line_8bpp(info, dy, sy, height, width);
1300 copyarea_line_32bpp(info, dy, sy, height, width);
1310 copyarea_8bpp(info, dx, dy, sx, sy, height,