Searched refs:image (Results 176 - 200 of 319) sorted by relevance

1234567891011>>

/linux-master/drivers/video/fbdev/
H A Dffb.c545 * ffb_imageblit - Copies a image from system memory to the screen.
548 * @image: structure defining the image.
550 static void ffb_imageblit(struct fb_info *info, const struct fb_image *image) argument
554 const u8 *data = image->data;
560 if (image->depth > 1) {
561 cfb_imageblit(info, image);
565 fg = ((u32 *)info->pseudo_palette)[image->fg_color];
566 bg = ((u32 *)info->pseudo_palette)[image->bg_color];
568 xy = (image
[all...]
H A Dfsl-diu-fb.c973 * Copies a cursor image from user space to the proper place in driver
974 * memory so that the hardware can display the cursor image.
988 * is 24x24, then the first three bytes of 'image' contain the pixel data for
989 * the top line of the cursor. We do a 32-bit read of 'image', but we look
990 * only at the top 24 bits. Then we increment 'image' by 3 bytes. The next
992 * 'image' by 1-3 bytes, but that should not cause any problems.
995 const void *image, uint16_t bg, uint16_t fg,
1007 uint32_t line = be32_to_cpup(image);
1015 image += DIV_ROUND_UP(width, 8);
1020 * Set a hardware cursor. The image dat
994 fsl_diu_load_cursor_image(struct fb_info *info, const void *image, uint16_t bg, uint16_t fg, unsigned int width, unsigned int height) argument
1071 uint32_t *image, *source, *mask; local
[all...]
H A Datafb.c276 * * Draws a image to the display *
277 * void (*fb_imageblit) (struct fb_info *info, const struct fb_image *image);
2412 * generic drawing routines; imageblit needs updating for image depth > 1
2512 static void atafb_imageblit(struct fb_info *info, const struct fb_image *image) argument
2521 cfb_imageblit(info, image);
2531 x2 = image->dx + image->width;
2532 y2 = image->dy + image->height;
2533 dx = image
[all...]
H A Dcobalt_lcdfb.c250 x = cursor->image.dx;
251 y = cursor->image.dy;
/linux-master/drivers/staging/media/imx/
H A Dimx-media-vdic.c243 struct ipu_image image; local
248 memset(&image, 0, sizeof(image));
249 image.pix = vdev->fmt;
250 image.rect = vdev->compose;
252 image.pix.height /= 2;
253 image.rect.height /= 2;
254 image.phys0 = phys0;
255 image.phys1 = phys1;
257 ret = ipu_cpmem_set_image(channel, &image);
[all...]
/linux-master/sound/drivers/vx/
H A Dvx_core.c431 /* check the length of boot image */
463 const unsigned char *image = boot->data + i; local
468 vx_outb(chip, TXH, image[0]);
469 vx_outb(chip, TXM, image[1]);
470 vx_outb(chip, TXL, image[2]);
679 * snd_vx_dsp_load - load the DSP image
688 const unsigned char *image, *cptr; local
697 image = dsp->data + i;
705 cptr = image;
/linux-master/drivers/misc/bcm-vk/
H A Dbcm_vk_dev.c561 * the pushed image (the TCM memories).
615 dev_err(dev, "Error invalid image type 0x%x\n", load_type);
796 "boot-status value for next image: 0x%x : fw-status 0x%x\n",
819 "Rev %d not in image lookup table, default to idx=%d\n",
950 struct vk_image image; local
956 if (copy_from_user(&image, arg, sizeof(image)))
959 if ((image.type != VK_IMAGE_TYPE_BOOT1) &&
960 (image.type != VK_IMAGE_TYPE_BOOT2)) {
961 dev_err(dev, "invalid image
[all...]
/linux-master/drivers/input/rmi4/
H A Drmi_f34v7.c879 const void *image)
893 descriptor = image + addr;
895 content = image + le32_to_cpu(descriptor->content_address);
922 const void *image = f34->v7.image; local
925 const struct image_header_10 *header = image;
934 descriptor = image + offset;
941 addr = get_unaligned_le32(image + offset);
943 descriptor = image + addr;
945 content = image
878 rmi_f34v7_parse_img_header_10_bl_container(struct f34_data *f34, const void *image) argument
[all...]
/linux-master/drivers/video/fbdev/via/
H A Dviafbdev.c723 const struct fb_image *image)
731 (image->depth != 1 && image->depth != viapar->depth)) {
732 cfb_imageblit(info, image);
736 if (image->depth == 1) {
740 ((u32 *)info->pseudo_palette)[image->fg_color];
742 ((u32 *)info->pseudo_palette)[image->bg_color];
744 fg_color = image->fg_color;
745 bg_color = image->bg_color;
752 image
722 viafb_imageblit(struct fb_info *info, const struct fb_image *image) argument
[all...]
/linux-master/include/linux/
H A Dfb.h107 __u32 dx; /* Where to place image */
109 __u32 width; /* Size of image */
113 __u8 depth; /* Depth of the image */
114 const char __user *data; /* Pointer to image data */
124 struct fb_image_user image; /* Cursor image */ member in struct:fb_cursor_user
284 /* Draws a image to the display */
285 void (*fb_imageblit) (struct fb_info *info, const struct fb_image *image);
542 extern void cfb_imageblit(struct fb_info *info, const struct fb_image *image);
572 extern void sys_imageblit(struct fb_info *info, const struct fb_image *image);
[all...]
/linux-master/drivers/media/usb/gspca/
H A Dpac7311.c40 * Note setting vflip disabled leads to a much lower image quality,
515 /* 2 bytes is placed here: number of image lines */
521 0x03, /* Number of image components: 3 */
561 u8 *image; local
571 * image, the 14th and 15th byte after the EOF seem to
572 * correspond to the center of the image.
585 image = gspca_dev->image;
586 if (image != NULL
587 && image[gspca_de
[all...]
/linux-master/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_kms.c60 u32 *image, u32 width, u32 height,
71 * @image: buffer which holds the cursor image
72 * @width: width of the mouse cursor image
73 * @height: height of the mouse cursor image
78 u32 *image, u32 width, u32 height,
82 const u32 image_size = width * height * sizeof(*image);
97 memcpy(&cmd[1], image, image_size);
110 * vmw_cursor_update_image - update the cursor image on the provided plane
113 * @image
77 vmw_send_define_cursor_cmd(struct vmw_private *dev_priv, u32 *image, u32 width, u32 height, u32 hotspotX, u32 hotspotY) argument
119 vmw_cursor_update_image(struct vmw_private *dev_priv, struct vmw_plane_state *vps, u32 *image, u32 width, u32 height, u32 hotspotX, u32 hotspotY) argument
149 vmw_cursor_update_mob(struct vmw_private *dev_priv, struct vmw_plane_state *vps, u32 *image, u32 width, u32 height, u32 hotspotX, u32 hotspotY) argument
801 void *image = vmw_du_cursor_plane_acquire_image(vps); local
[all...]
H A Dvmwgfx_stdu.c217 SVGA3dSurfaceImageId image; local
230 /* Set up image using information in vfb */
231 memset(&image, 0, sizeof(image));
232 image.sid = res ? res->id : SVGA3D_INVALID_ID;
242 cmd->body.image = image;
1108 cmd_img->body.image.sid = stdu->display_srf->res.id;
1109 cmd_img->body.image.face = 0;
1110 cmd_img->body.image
[all...]
/linux-master/arch/powerpc/platforms/85xx/
H A Dsmp.c441 static void mpc85xx_smp_machine_kexec(struct kimage *image) argument
447 if (image->type == KEXEC_TYPE_DEFAULT)
466 default_machine_kexec(image);
/linux-master/arch/loongarch/net/
H A Dbpf_jit.c419 if (!ctx->image || !ctx->prog->aux->extable)
430 pc = (unsigned long)&ctx->image[ctx->idx - 1];
1133 if (ctx->image == NULL)
1139 if (ctx->image == NULL)
1147 if (ctx->image == NULL)
1169 insn = ctx->image[i];
1223 image_ptr = jit_data->image;
1250 /* Now we know the actual image size.
1266 ctx.image = (union loongarch_instruction *)image_ptr;
1291 bpf_jit_dump(prog->len, prog_size, 2, ctx.image);
[all...]
/linux-master/drivers/video/fbdev/nvidia/
H A Dnv_proto.h56 const struct fb_image *image);
/linux-master/sound/pcmcia/vx/
H A Dvxp_ops.c132 * vx_load_xilinx_binary - load the xilinx binary image
133 * the binary image is the binary array converted from the bitstream file.
141 const unsigned char *image; local
162 image = fw->data;
163 for (i = 0; i < fw->size; i++, image++) {
164 data = *image;
248 /* xilinx image */
254 /* DSP image */
/linux-master/arch/sparc/
H A DMakefile70 image zImage uImage tftpboot.img vmlinux.aout: vmlinux
82 # This is the image used for packaging
88 echo ' image - kernel image ($(boot)/image)'
89 echo '* zImage - stripped/compressed kernel image ($(boot)/zImage)'
92 echo ' tftpboot.img - image prepared for tftp'
/linux-master/drivers/firmware/efi/libstub/
H A Defistub.h1025 efi_status_t efi_boot_kernel(void *handle, efi_loaded_image_t *image,
1059 char *efi_convert_cmdline(efi_loaded_image_t *image, int *cmd_line_len);
1088 efi_status_t handle_cmdline_files(efi_loaded_image_t *image,
1097 static inline efi_status_t efi_load_dtb(efi_loaded_image_t *image, argument
1101 return handle_cmdline_files(image, L"dtb=", sizeof(L"dtb=") - 2,
1105 efi_status_t efi_load_initrd(efi_loaded_image_t *image,
1111 * arm64 regarding where the kernel image must be loaded and any memory that
1119 efi_loaded_image_t *image,
1124 efi_loaded_image_t *image,
1128 efi_status_t efi_handle_cmdline(efi_loaded_image_t *image, cha
[all...]
/linux-master/arch/m68k/include/asm/
H A Dfbio.h107 char __user *image; /* cursor image bits */ member in struct:fbcursor
323 u32 image; /* cursor image bits */ member in struct:fbcursor32
/linux-master/drivers/gpu/drm/nouveau/dispnv50/
H A Datom.h230 } image; member in struct:nv50_wndw_atom
259 bool image:1; member in struct:nv50_wndw_atom::nv50_wndw_atom_mask::__anon910
/linux-master/tools/bpf/bpftool/
H A Dmain.h176 int disasm_print_insn(unsigned char *image, ssize_t len, int opcodes,
185 int disasm_print_insn(unsigned char *image, ssize_t len, int opcodes, argument
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/fpga/
H A Dcore.c71 static const char *mlx5_fpga_image_name(enum mlx5_fpga_image image) argument
73 switch (image) {
121 mlx5_fpga_info(fdev, "Status %u; Admin image %u; Oper image %u\n",
129 mlx5_fpga_err(fdev, "%s image failed to load; status %u\n",
203 mlx5_fpga_info(fdev, "%s(%d): image, version %u; SBU %06x:%04x version %d\n",
/linux-master/arch/parisc/net/
H A Dbpf_jit_core.c109 /* obtain the actual image size */
116 &jit_data->image,
124 ctx->insns = (u32 *)jit_data->image;
126 * Now, when the image is allocated, the image can
134 pr_err("bpf-jit: image did not converge in <%d passes!\n", i);
/linux-master/scripts/package/
H A Dmkdebian160 packagename=linux-image
236 Package: linux-image-$version-dbg

Completed in 253 milliseconds

1234567891011>>