Lines Matching refs:sy
1050 copyarea_line_8bpp(struct fb_info *info, u32 dy, u32 sy, argument
1064 if (sy < dy) {
1065 spos = (sy + height) * width;
1077 spos = sy * width;
1095 copyarea_line_32bpp(struct fb_info *info, u32 dy, u32 sy, argument
1112 if (sy < dy) {
1113 src = tga_fb + (sy + height) * width * 4;
1125 src = tga_fb + sy * width * 4;
1144 copyarea_8bpp(struct fb_info *info, u32 dx, u32 dy, u32 sx, u32 sy, argument
1163 if (dy > sy) {
1165 sy += height - 1;
1168 backward = dy == sy && dx > sx && dx < sx + width;
1173 sepos = sy * line_length + sx;
1253 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1261 sy = area->sy;
1267 if (dx > vxres || sx > vxres || dy > vyres || sy > vyres)
1277 if (sx + width > vxres || sy + height > vyres)
1285 copyarea_line_8bpp(info, dy, sy, height, width);
1287 copyarea_line_32bpp(info, dy, sy, height, width);
1297 copyarea_8bpp(info, dx, dy, sx, sy, height,