Lines Matching refs:image
1148 static void pm2fb_imageblit(struct fb_info *info, const struct fb_image *image) in pm2fb_imageblit() argument
1151 u32 height = image->height; in pm2fb_imageblit()
1153 const u32 *src = (const u32 *)image->data; in pm2fb_imageblit()
1163 if (info->flags & FBINFO_HWACCEL_DISABLED || image->depth != 1) { in pm2fb_imageblit()
1164 cfb_imageblit(info, image); in pm2fb_imageblit()
1169 fgx = image->fg_color; in pm2fb_imageblit()
1170 bgx = image->bg_color; in pm2fb_imageblit()
1174 fgx = par->palette[image->fg_color]; in pm2fb_imageblit()
1175 bgx = par->palette[image->bg_color]; in pm2fb_imageblit()
1190 ((image->dy & 0xfff) << 16) | (image->dx & 0x0fff)); in pm2fb_imageblit()
1192 (((image->dy + image->height) & 0x0fff) << 16) | in pm2fb_imageblit()
1193 ((image->dx + image->width) & 0x0fff)); in pm2fb_imageblit()
1198 ((image->dy & 0xfff) << 16) | (image->dx & 0x0fff)); in pm2fb_imageblit()
1200 ((image->height & 0x0fff) << 16) | in pm2fb_imageblit()
1201 ((image->width) & 0x0fff)); in pm2fb_imageblit()
1234 int width = ((image->width + 7) >> 3) in pm2fb_imageblit()
1261 int x = cursor->image.dx - info->var.xoffset; in pm2vfb_cursor()
1262 int y = cursor->image.dy - info->var.yoffset; in pm2vfb_cursor()
1292 u32 fg_idx = cursor->image.fg_color; in pm2vfb_cursor()
1293 u32 bg_idx = cursor->image.bg_color; in pm2vfb_cursor()
1315 u8 *bitmap = (u8 *)cursor->image.data; in pm2vfb_cursor()
1320 for (i = 0; i < cursor->image.height; i++) { in pm2vfb_cursor()
1321 int j = (cursor->image.width + 7) >> 3; in pm2vfb_cursor()
1367 if (cursor->image.width > 64 || in pm2fb_cursor()
1368 cursor->image.height > 64 || in pm2fb_cursor()
1369 cursor->image.depth > 1) in pm2fb_cursor()
1390 int x = cursor->image.dx - info->var.xoffset + 63; in pm2fb_cursor()
1391 int y = cursor->image.dy - info->var.yoffset + 63; in pm2fb_cursor()
1401 u32 fg_idx = cursor->image.fg_color; in pm2fb_cursor()
1402 u32 bg_idx = cursor->image.bg_color; in pm2fb_cursor()
1422 u8 *bitmap = (u8 *)cursor->image.data; in pm2fb_cursor()
1429 for (i = 0; i < cursor->image.height; i++) { in pm2fb_cursor()
1430 int j = (cursor->image.width + 7) >> 3; in pm2fb_cursor()
1455 for (i = 0; i < cursor->image.height; i++) { in pm2fb_cursor()
1456 int j = (cursor->image.width + 7) >> 3; in pm2fb_cursor()