Lines Matching refs:sy
1063 copyarea_line_8bpp(struct fb_info *info, u32 dy, u32 sy, argument
1077 if (sy < dy) {
1078 spos = (sy + height) * width;
1090 spos = sy * width;
1108 copyarea_line_32bpp(struct fb_info *info, u32 dy, u32 sy, argument
1125 if (sy < dy) {
1126 src = tga_fb + (sy + height) * width * 4;
1138 src = tga_fb + sy * width * 4;
1157 copyarea_8bpp(struct fb_info *info, u32 dx, u32 dy, u32 sx, u32 sy, argument
1176 if (dy > sy) {
1178 sy += height - 1;
1181 backward = dy == sy && dx > sx && dx < sx + width;
1186 sepos = sy * line_length + sx;
1268 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1276 sy = area->sy;
1282 if (dx > vxres || sx > vxres || dy > vyres || sy > vyres)
1292 if (sx + width > vxres || sy + height > vyres)
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,