Lines Matching refs:sy
1058 copyarea_line_8bpp(struct fb_info *info, u32 dy, u32 sy, argument
1072 if (sy < dy) {
1073 spos = (sy + height) * width;
1085 spos = sy * width;
1103 copyarea_line_32bpp(struct fb_info *info, u32 dy, u32 sy, argument
1120 if (sy < dy) {
1121 src = tga_fb + (sy + height) * width * 4;
1133 src = tga_fb + sy * width * 4;
1152 copyarea_8bpp(struct fb_info *info, u32 dx, u32 dy, u32 sx, u32 sy, argument
1171 if (dy > sy) {
1173 sy += height - 1;
1176 backward = dy == sy && dx > sx && dx < sx + width;
1181 sepos = sy * line_length + sx;
1263 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1271 sy = area->sy;
1277 if (dx > vxres || sx > vxres || dy > vyres || sy > vyres)
1287 if (sx + width > vxres || sy + height > vyres)
1295 copyarea_line_8bpp(info, dy, sy, height, width);
1297 copyarea_line_32bpp(info, dy, sy, height, width);
1307 copyarea_8bpp(info, dx, dy, sx, sy, height,