Searched refs:image (Results 51 - 75 of 210) sorted by relevance

123456789

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/aty/
H A Dmach64_cursor.c87 x = cursor->image.dx - cursor->hot.x - info->var.xoffset;
95 y = cursor->image.dy - cursor->hot.y - info->var.yoffset;
103 h = cursor->image.height;
124 fg_idx = cursor->image.fg_color;
125 bg_idx = cursor->image.bg_color;
141 u8 *src = (u8 *)cursor->image.data;
144 unsigned int width = (cursor->image.width + 7) >> 3;
145 unsigned int height = cursor->image.height;
151 // Clear cursor image with 1010101010...
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/drm/
H A Dradeon_ioc32.c166 int width; /* Texture image coordinates */
168 u32 image; member in struct:drm_radeon_texture32
177 drm_radeon_tex_image_t __user *image; local
181 if (req32.image == 0)
183 if (copy_from_user(&img32, (void __user *)(unsigned long)req32.image,
187 request = compat_alloc_user_space(sizeof(*request) + sizeof(*image));
189 sizeof(*request) + sizeof(*image)))
191 image = (drm_radeon_tex_image_t __user *) (request + 1);
198 || __put_user(image, &request->image)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/i810/
H A Di810_accel.c223 * @src: address of image data
363 void i810fb_imageblit(struct fb_info *info, const struct fb_image *image) argument
369 par->depth == 4 || image->depth != 1)
370 return cfb_imageblit(info, image);
374 fg = image->fg_color;
375 bg = image->bg_color;
379 fg = ((u32 *)(info->pseudo_palette))[image->fg_color];
380 bg = ((u32 *)(info->pseudo_palette))[image->bg_color];
384 dst = info->fix.smem_start + (image->dy * info->fix.line_length) +
385 (image
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/vhook/
H A Dimlib2.c8 * conversion of the image into RGB and back is time consuming. For some
11 * image. However, this code is fast enough to handle 10 fps of 320x240 on a
29 # 20.828s transcode, img_convert and move image around
70 "h", // image height
71 "w", // image width
105 Imlib_Image image; member in struct:CachedImage
116 imlib_context_set_image(ci->cache->image);
308 /* load the image (for example, credits for a movie) */
312 av_log(NULL, AV_LOG_ERROR, "Couldn't load image '%s'\n", ci->fileImage);
339 return cache->image;
345 put_cached_image(ContextInfo *ci, Imlib_Image image, int width, int height) argument
360 Imlib_Image image; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/sparc/
H A Dcs4231.c114 unsigned char image[32]; /* registers image */ member in struct:snd_cs4231
438 chip->image[reg] &= mask;
439 chip->image[reg] |= value;
443 tmp = (chip->image[reg] & mask) | value;
445 chip->image[reg] = tmp;
481 chip->image[reg] = value;
678 chip->image[CS4231_IFACE_CTRL] |= what;
681 chip->image[CS4231_IFACE_CTRL] &= ~what;
684 chip->image[CS4231_IFACE_CTR
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/
H A DMakefile26 obj-$(CONFIG_USB_MDC800) += image/
27 obj-$(CONFIG_USB_MICROTEK) += image/
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dvt8623fb.c138 /* image data is MSB-first, fb structure is MSB-first too */
145 static void vt8623fb_iplan_imageblit(struct fb_info *info, const struct fb_image *image) argument
147 u32 fg = expand_color(image->fg_color);
148 u32 bg = expand_color(image->bg_color);
155 src1 = image->data;
156 dst1 = info->screen_base + (image->dy * info->fix.line_length)
157 + ((image->dx / 8) * 4);
159 for (y = 0; y < image->height; y++) {
162 for (x = 0; x < image->width; x += 8) {
167 src1 += image
201 vt8623fb_cfb4_imageblit(struct fb_info *info, const struct fb_image *image) argument
228 vt8623fb_imageblit(struct fb_info *info, const struct fb_image *image) argument
[all...]
H A Dcyblafb.c416 const struct fb_image *image)
419 u32 *pd = (u32 *) image->data;
424 // Used only for drawing the penguine (image->depth > 1)
425 if (image->depth != 1) {
426 cfb_imageblit(info, image);
430 if (image->width == 0 || image->height == 0) {
437 fgcol = ((u32 *) (info->pseudo_palette))[image->fg_color];
438 bgcol = ((u32 *) (info->pseudo_palette))[image->bg_color];
440 fgcol = image
415 cyblafb_imageblit(struct fb_info *info, const struct fb_image *image) argument
[all...]
H A Darkfb.c173 /* image data is MSB-first, fb structure is MSB-first too */
180 static void arkfb_iplan_imageblit(struct fb_info *info, const struct fb_image *image) argument
182 u32 fg = expand_color(image->fg_color);
183 u32 bg = expand_color(image->bg_color);
190 src1 = image->data;
191 dst1 = info->screen_base + (image->dy * info->fix.line_length)
192 + ((image->dx / 8) * 4);
194 for (y = 0; y < image->height; y++) {
197 for (x = 0; x < image->width; x += 8) {
202 src1 += image
238 arkfb_cfb4_imageblit(struct fb_info *info, const struct fb_image *image) argument
266 arkfb_imageblit(struct fb_info *info, const struct fb_image *image) argument
[all...]
H A Ds3fb.c207 /* image data is MSB-first, fb structure is MSB-first too */
214 static void s3fb_iplan_imageblit(struct fb_info *info, const struct fb_image *image) argument
216 u32 fg = expand_color(image->fg_color);
217 u32 bg = expand_color(image->bg_color);
224 src1 = image->data;
225 dst1 = info->screen_base + (image->dy * info->fix.line_length)
226 + ((image->dx / 8) * 4);
228 for (y = 0; y < image->height; y++) {
231 for (x = 0; x < image->width; x += 8) {
236 src1 += image
271 s3fb_cfb4_imageblit(struct fb_info *info, const struct fb_image *image) argument
298 s3fb_imageblit(struct fb_info *info, const struct fb_image *image) argument
[all...]
H A Dvga16fb.c1162 static void vga_8planes_imageblit(struct fb_info *info, const struct fb_image *image) argument
1169 const char *cdat = image->data;
1170 u32 dx = image->dx;
1175 where = info->screen_base + dx + image->dy * info->fix.line_length;
1178 writeb(image->bg_color, where);
1181 setmask(image->fg_color ^ image->bg_color);
1184 for (y = 0; y < image->height; y++, where += info->fix.line_length)
1193 static void vga_imageblit_expand(struct fb_info *info, const struct fb_image *image) argument
1195 char __iomem *where = info->screen_base + (image
1257 vga_imageblit_color(struct fb_info *info, const struct fb_image *image) argument
1302 vga16fb_imageblit(struct fb_info *info, const struct fb_image *image) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/
H A DMakefile24 # Actual linking is done with "make image".
54 all: image
58 image tftpboot.img: vmlinux
68 echo '* image - kernel image ($(boot)/image)'
69 echo ' tftpboot.img - image prepared for tftp'
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/tagutils/
H A Dtagutils-flc.c82 if((psong->image = malloc(psong->image_size)))
83 memcpy(psong->image, block->data.picture.data, psong->image_size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/tagutils/
H A Dtagutils-flc.c79 if((psong->image = malloc(psong->image_size)))
80 memcpy(psong->image, block->data.picture.data, psong->image_size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/tagutils/
H A Dtagutils-flc.c82 if((psong->image = malloc(psong->image_size)))
83 memcpy(psong->image, block->data.picture.data, psong->image_size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/engines/rsaref/
H A Dbuild.com42 ; Transfer vector for VAX shareable image
71 ! Ensure transfer vector is at beginning of image
76 ! make psects nonshareable so image can be installed.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/engines/rsaref/
H A Dbuild.com42 ; Transfer vector for VAX shareable image
71 ! Ensure transfer vector is at beginning of image
76 ! make psects nonshareable so image can be installed.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/jpeg-7/
H A Dwrrle.c38 * Since RLE stores scanlines bottom-to-top, we have to invert the image
56 jvirt_sarray_ptr image; /* virtual array to store the output image */ member in struct:__anon1013
87 * Make sure the image can be stored in RLE format.
89 * - RLE stores image dimensions as *signed* 16 bit integers. JPEG
133 ((j_common_ptr) cinfo, dest->image, (JDIMENSION) 0, (JDIMENSION) 1, TRUE);
160 ((j_common_ptr) cinfo, dest->image,
201 /* Add a comment to the output image with the true colormap length. */
225 ((j_common_ptr) cinfo, dest->image,
239 ((j_common_ptr) cinfo, dest->image,
[all...]
H A Drdrle.c48 * For now, we ignore any alpha channel in the image.
56 * Since RLE stores scanlines bottom-to-top, we have to invert the image
58 * incoming image into a virtual array on the first get_pixel_rows call,
68 jvirt_sarray_ptr image; /* virtual array to hold the image */ member in struct:_rle_source_struct
77 * Read the file header; return image size and component count.
163 /* request a virtual array to hold the image */
164 source->image = (*cinfo->mem->request_virt_sarray)
182 * Called only after load_image has read the image into the virtual array.
193 ((j_common_ptr) cinfo, source->image, sourc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/intelfb/
H A Dintelfbdrv.c71 const struct fb_image *image);
1463 intelfb_imageblit(struct fb_info *info, const struct fb_image *image) argument
1473 || image->depth != 1)
1474 return cfb_imageblit(info, image);
1477 fgcolor = dinfo->pseudo_palette[image->fg_color];
1478 bgcolor = dinfo->pseudo_palette[image->bg_color];
1480 fgcolor = image->fg_color;
1481 bgcolor = image->bg_color;
1484 if (!intelfbhw_do_drawglyph(dinfo, fgcolor, bgcolor, image->width,
1485 image
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/boot/simple/
H A DMakefile7 # (1) For machines that do not want to use the ELF image directly (including
10 # that produces the desired image and they must set end-$(CONFIG_MACHINE)
11 # to what will be suffixed to the image filename.
12 # (2) Regardless of (1), to have the resulting image be something other
16 # set entrypoint-$(CONFIG_MACHINE) to the location which the image should be
178 # Linker args. This specifies where the image will be run at.
223 --add-section=.image=$(images)/vmlinux.gz \
224 --set-section-flags=.image=contents,alloc,load,readonly,data \
225 $(obj)/dummy.o $(obj)/image.o
226 $(LD) $(LD_ARGS) -o $@ $(OBJS) $(obj)/image
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/s390/
H A DMakefile39 KBUILD_IMAGE :=arch/s390/boot/image
100 all: image
105 image: vmlinux
116 echo '* image - Kernel image for IPL ($(boot)/image)'
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dmachdep.h236 /* Called to do what every setup is needed on image and the
241 int (*machine_kexec_prepare)(struct kimage *image);
243 /* Called to handle any machine specific cleanup on image */
244 void (*machine_kexec_cleanup)(struct kimage *image);
250 void (*machine_kexec)(struct kimage *image);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Ddl2k.c1420 bmsr.image = mii_read (dev, phy_addr, MII_BMSR);
1441 bmsr.image = mii_read (dev, phy_addr, MII_BMSR);
1447 negotiate.image = mii_read (dev, phy_addr, MII_ANAR) &
1449 mscr.image = mii_read (dev, phy_addr, MII_MSCR);
1450 mssr.image = mii_read (dev, phy_addr, MII_MSSR);
1485 bmcr.image = mii_read (dev, phy_addr, MII_BMCR);
1526 bmsr.image = mii_read (dev, phy_addr, MII_BMSR);
1527 anar.image = mii_read (dev, phy_addr, MII_ANAR);
1535 mii_write (dev, phy_addr, MII_ANAR, anar.image);
1538 pscr.image
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/
H A Dimage_utils.c20 * There are function to effiently resize a JPEG image, and some utility functions.
206 image_free(image *pimage)
213 get_pix(image *pimage, int32_t x, int32_t y)
227 put_pix_alpha_replace(image *pimage, int32_t x, int32_t y, pix col)
371 image *
374 image *vimage;
376 if((vimage = (image *)malloc(sizeof(image))) == NULL)
405 image *
408 image *vimag
[all...]

Completed in 295 milliseconds

123456789