Lines Matching defs:image

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