Lines Matching refs:sy
1052 copyarea_line_8bpp(struct fb_info *info, u32 dy, u32 sy, argument
1066 if (sy < dy) {
1067 spos = (sy + height) * width;
1079 spos = sy * width;
1097 copyarea_line_32bpp(struct fb_info *info, u32 dy, u32 sy, argument
1114 if (sy < dy) {
1115 src = tga_fb + (sy + height) * width * 4;
1127 src = tga_fb + sy * width * 4;
1146 copyarea_8bpp(struct fb_info *info, u32 dx, u32 dy, u32 sx, u32 sy, argument
1165 if (dy > sy) {
1167 sy += height - 1;
1170 backward = dy == sy && dx > sx && dx < sx + width;
1175 sepos = sy * line_length + sx;
1257 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1265 sy = area->sy;
1271 if (dx > vxres || sx > vxres || dy > vyres || sy > vyres)
1281 if (sx + width > vxres || sy + height > vyres)
1289 copyarea_line_8bpp(info, dy, sy, height, width);
1291 copyarea_line_32bpp(info, dy, sy, height, width);
1301 copyarea_8bpp(info, dx, dy, sx, sy, height,