Lines Matching refs:image
1155 static void pm2fb_imageblit(struct fb_info *info, const struct fb_image *image) in pm2fb_imageblit() argument
1158 u32 height = image->height; in pm2fb_imageblit()
1160 const u32 *src = (const u32 *)image->data; in pm2fb_imageblit()
1170 if (info->flags & FBINFO_HWACCEL_DISABLED || image->depth != 1) { in pm2fb_imageblit()
1171 cfb_imageblit(info, image); in pm2fb_imageblit()
1176 fgx = image->fg_color; in pm2fb_imageblit()
1177 bgx = image->bg_color; in pm2fb_imageblit()
1181 fgx = par->palette[image->fg_color]; in pm2fb_imageblit()
1182 bgx = par->palette[image->bg_color]; in pm2fb_imageblit()
1197 ((image->dy & 0xfff) << 16) | (image->dx & 0x0fff)); in pm2fb_imageblit()
1199 (((image->dy + image->height) & 0x0fff) << 16) | in pm2fb_imageblit()
1200 ((image->dx + image->width) & 0x0fff)); in pm2fb_imageblit()
1205 ((image->dy & 0xfff) << 16) | (image->dx & 0x0fff)); in pm2fb_imageblit()
1207 ((image->height & 0x0fff) << 16) | in pm2fb_imageblit()
1208 ((image->width) & 0x0fff)); in pm2fb_imageblit()
1241 int width = ((image->width + 7) >> 3) in pm2fb_imageblit()
1268 int x = cursor->image.dx - info->var.xoffset; in pm2vfb_cursor()
1269 int y = cursor->image.dy - info->var.yoffset; in pm2vfb_cursor()
1299 u32 fg_idx = cursor->image.fg_color; in pm2vfb_cursor()
1300 u32 bg_idx = cursor->image.bg_color; in pm2vfb_cursor()
1322 u8 *bitmap = (u8 *)cursor->image.data; in pm2vfb_cursor()
1327 for (i = 0; i < cursor->image.height; i++) { in pm2vfb_cursor()
1328 int j = (cursor->image.width + 7) >> 3; in pm2vfb_cursor()
1374 if (cursor->image.width > 64 || in pm2fb_cursor()
1375 cursor->image.height > 64 || in pm2fb_cursor()
1376 cursor->image.depth > 1) in pm2fb_cursor()
1397 int x = cursor->image.dx - info->var.xoffset + 63; in pm2fb_cursor()
1398 int y = cursor->image.dy - info->var.yoffset + 63; in pm2fb_cursor()
1408 u32 fg_idx = cursor->image.fg_color; in pm2fb_cursor()
1409 u32 bg_idx = cursor->image.bg_color; in pm2fb_cursor()
1429 u8 *bitmap = (u8 *)cursor->image.data; in pm2fb_cursor()
1436 for (i = 0; i < cursor->image.height; i++) { in pm2fb_cursor()
1437 int j = (cursor->image.width + 7) >> 3; in pm2fb_cursor()
1462 for (i = 0; i < cursor->image.height; i++) { in pm2fb_cursor()
1463 int j = (cursor->image.width + 7) >> 3; in pm2fb_cursor()