Searched refs:image (Results 1 - 25 of 612) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/
H A Dimage_utils.h18 } image; typedef in typeref:struct:__anon4061
21 image_free(image *pimage);
29 image *
32 image *
33 image_resize(image * src_image, int32_t width, int32_t height);
36 image_save_to_jpeg_buf(image * pimage, int * size);
39 image_save_to_jpeg_file(image * pimage, const char * path);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dmachine_kexec_32.c72 static void machine_kexec_free_page_tables(struct kimage *image) argument
74 free_page((unsigned long)image->arch.pgd);
76 free_page((unsigned long)image->arch.pmd0);
77 free_page((unsigned long)image->arch.pmd1);
79 free_page((unsigned long)image->arch.pte0);
80 free_page((unsigned long)image->arch.pte1);
83 static int machine_kexec_alloc_page_tables(struct kimage *image) argument
85 image->arch.pgd = (pgd_t *)get_zeroed_page(GFP_KERNEL);
87 image->arch.pmd0 = (pmd_t *)get_zeroed_page(GFP_KERNEL);
88 image
122 machine_kexec_prepare_page_tables(struct kimage *image) argument
157 machine_kexec_prepare(struct kimage *image) argument
173 machine_kexec_cleanup(struct kimage *image) argument
183 machine_kexec(struct kimage *image) argument
[all...]
H A Dmachine_kexec_64.c24 static int init_one_level2_page(struct kimage *image, pgd_t *pgd, argument
35 page = kimage_alloc_control_pages(image, 0);
44 page = kimage_alloc_control_pages(image, 0);
71 static int init_level3_page(struct kimage *image, pud_t *level3p, argument
84 page = kimage_alloc_control_pages(image, 0);
104 static int init_level4_page(struct kimage *image, pgd_t *level4p, argument
117 page = kimage_alloc_control_pages(image, 0);
123 result = init_level3_page(image, level3p, addr, last_addr);
138 static void free_transition_pgtable(struct kimage *image) argument
140 free_page((unsigned long)image
145 init_transition_pgtable(struct kimage *image, pgd_t *pgd) argument
188 init_pgtable(struct kimage *image, unsigned long start_pgtable) argument
247 machine_kexec_prepare(struct kimage *image) argument
263 machine_kexec_cleanup(struct kimage *image) argument
272 machine_kexec(struct kimage *image) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/kernel/
H A Dmachine_kexec.c29 int machine_kexec_prepare(struct kimage *image) argument
33 /* Can't replace kernel image since it is read-only. */
37 /* We don't support anything but the default image type for now. */
38 if (image->type != KEXEC_TYPE_DEFAULT)
42 reboot_code_buffer = (void *) page_to_phys(image->control_code_page);
49 void machine_kexec_cleanup(struct kimage *image) argument
60 struct kimage *image = data; local
65 data_mover = (relocate_kernel_t) page_to_phys(image->control_code_page);
68 (*data_mover)(&image->head, image
72 machine_kexec(struct kimage *image) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlibopenjpeg.c39 AVFrame image; member in struct:__anon1942
42 static int check_image_attributes(opj_image_t *image) argument
44 return image->comps[0].dx == image->comps[1].dx &&
45 image->comps[1].dx == image->comps[2].dx &&
46 image->comps[0].dy == image->comps[1].dy &&
47 image->comps[1].dy == image
79 opj_image_t *image; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/console/
H A Dsoftcursor.c28 struct fb_image *image; local
34 s_pitch = (cursor->image.width + 7) >> 3;
35 dsize = s_pitch * cursor->image.height;
50 image = (struct fb_image *)ops->cursor_src;
51 *image = cursor->image;
54 size = d_pitch * image->height + buf_align;
62 src[i] = image->data[i] ^ cursor->mask[i];
67 src[i] = image->data[i] & cursor->mask[i];
71 memcpy(src, image
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/rss/
H A Drss.h51 struct image *image; ///< optional image element member in struct:channel
67 /// <image> element
68 struct image struct
70 char *title; ///< image title element
71 char *url; ///< image URL element
72 char *link; ///< image link element
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/rss/
H A Drss.h51 struct image *image; ///< optional image element member in struct:channel
67 /// <image> element
68 struct image struct
70 char *title; ///< image title element
71 char *url; ///< image URL element
72 char *link; ///< image link element
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlibopenjpegdec.c89 static inline int libopenjpeg_matches_pix_fmt(const opj_image_t *image, enum AVPixelFormat pix_fmt) argument
94 if (desc->nb_components != image->numcomps) {
101 desc->comp[3].depth_minus1 + 1 >= image->comps[3].prec &&
102 1 == image->comps[3].dx &&
103 1 == image->comps[3].dy;
106 desc->comp[2].depth_minus1 + 1 >= image->comps[2].prec &&
107 1 << desc->log2_chroma_w == image->comps[2].dx &&
108 1 << desc->log2_chroma_h == image->comps[2].dy;
111 desc->comp[1].depth_minus1 + 1 >= image->comps[1].prec &&
112 1 << desc->log2_chroma_w == image
126 libopenjpeg_guess_pix_fmt(const opj_image_t *image) argument
173 libopenjpeg_copy_to_packed8(AVFrame *picture, opj_image_t *image) argument
185 libopenjpeg_copy_to_packed16(AVFrame *picture, opj_image_t *image) argument
202 libopenjpeg_copyto8(AVFrame *picture, opj_image_t *image) argument
220 libopenjpeg_copyto16(AVFrame *picture, opj_image_t *image) argument
262 opj_image_t *image; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dkexec.c113 static int kimage_is_destination_range(struct kimage *image,
115 static struct page *kimage_alloc_page(struct kimage *image,
124 struct kimage *image; local
130 image = kzalloc(sizeof(*image), GFP_KERNEL);
131 if (!image)
134 image->head = 0;
135 image->entry = &image->head;
136 image
233 struct kimage *image; local
277 struct kimage *image; local
341 kimage_is_destination_range(struct kimage *image, unsigned long start, unsigned long end) argument
400 kimage_alloc_normal_control_pages(struct kimage *image, unsigned int order) argument
466 kimage_alloc_crash_control_pages(struct kimage *image, unsigned int order) argument
530 kimage_alloc_control_pages(struct kimage *image, unsigned int order) argument
547 kimage_add_entry(struct kimage *image, kimage_entry_t entry) argument
573 kimage_set_destination(struct kimage *image, unsigned long destination) argument
587 kimage_add_page(struct kimage *image, unsigned long page) argument
600 kimage_free_extra_pages(struct kimage *image) argument
609 kimage_terminate(struct kimage *image) argument
630 kimage_free(struct kimage *image) argument
664 kimage_dst_used(struct kimage *image, unsigned long page) argument
683 kimage_alloc_page(struct kimage *image, gfp_t gfp_mask, unsigned long destination) argument
784 kimage_load_normal_segment(struct kimage *image, struct kexec_segment *segment) argument
844 kimage_load_crash_segment(struct kimage *image, struct kexec_segment *segment) argument
899 kimage_load_segment(struct kimage *image, struct kexec_segment *segment) argument
944 struct kimage **dest_image, *image; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/kernel/
H A Dmachine_kexec.c31 int machine_kexec_prepare(struct kimage *image) argument
36 void machine_kexec_cleanup(struct kimage *image) argument
48 void machine_kexec(struct kimage *image) argument
55 page_list = image->head & PAGE_MASK;
59 page_to_pfn(image->control_code_page) << PAGE_SHIFT;
60 reboot_code_buffer = page_address(image->control_code_page);
63 kexec_start_address = image->start;
66 kexec_boot_atags = image->start - KEXEC_ARM_ZIMAGE_OFFSET + KEXEC_ARM_ATAGS_OFFSET;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Drgncmn.cpp28 #include "wx/image.h"
78 const wxImage& image,
90 // Loop through the image row by row, pixel by pixel, building up
92 int width = image.GetWidth();
93 int height = image.GetHeight();
106 unsigned char R = image.GetRed(x,y);
107 unsigned char G = image.GetGreen(x,y);
108 unsigned char B = image.GetBlue(x,y);
133 wxImage image = bmp.ConvertToImage(); local
134 wxASSERT_MSG( image
77 DoRegionUnion(wxRegionBase& region, const wxImage& image, unsigned char loR, unsigned char loG, unsigned char loB, int tolerance) argument
151 wxImage image = bmp.ConvertToImage(); local
[all...]
H A Dimagxpm.cpp92 bool wxXPMHandler::LoadFile(wxImage *image, argument
101 *image = img;
105 bool wxXPMHandler::SaveFile(wxImage * image, argument
116 int cols = int(image->ComputeHistogram(histogram));
124 if ( image->HasOption(wxIMAGE_OPTION_FILENAME) )
126 wxSplitPath(image->GetOption(wxIMAGE_OPTION_FILENAME),
144 image->GetWidth(), image->GetHeight(), cols, chars_per_pixel);
153 if (image->HasMask())
154 mask_key = (image
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Ddragimag.h45 In your OnMouseMove function, hide the image, do any display updating required,
46 then move and show the image again:
56 // Prevent screen corruption by hiding the image
68 // Move and show the image again
73 Eventually we end the drag and delete the drag image.
79 // End the drag and delete the drag image
95 and ignore the image.
110 wxDragImage(const wxBitmap& image, const wxCursor& cursor = wxNullCursor) argument
114 Create(image, cursor);
118 wxDragImage(const wxBitmap& image, cons argument
125 wxDragImage(const wxIcon& image, const wxCursor& cursor = wxNullCursor) argument
133 wxDragImage(const wxIcon& image, const wxCursor& cursor, const wxPoint& cursorHotspot) argument
183 Create(const wxBitmap& image, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot)) argument
191 Create(const wxIcon& image, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot)) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/palmos/
H A Ddragimag.h39 In your OnMouseMove function, hide the image, do any display updating required,
40 then move and show the image again:
50 // Prevent screen corruption by hiding the image
57 // Move and show the image again
62 Eventually we end the drag and delete the drag image.
68 // End the drag and delete the drag image
84 and ignore the image.
99 wxDragImage(const wxBitmap& image, const wxCursor& cursor = wxNullCursor) argument
103 Create(image, cursor);
107 wxDragImage(const wxBitmap& image, cons argument
114 wxDragImage(const wxIcon& image, const wxCursor& cursor = wxNullCursor) argument
122 wxDragImage(const wxIcon& image, const wxCursor& cursor, const wxPoint& cursorHotspot) argument
172 Create(const wxBitmap& image, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot)) argument
180 Create(const wxIcon& image, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot)) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/boot/
H A Dpiggyback_64.c2 Simple utility to make a single-image install kernel with initial ramdisk
32 /* Note: run this on an a.out kernel (use elftoaout for it), as PROM looks for a.out image onlly
47 int image, tail; local
60 if ((image = open(argv[1],O_RDWR)) < 0) die(argv[1]);
61 if (read(image,buffer,512) != 512) die(argv[1]);
66 if (lseek(image,i,0) < 0) die("lseek");
67 if (read(image,buffer,512) != 512) die(argv[1]);
80 if (lseek(image,i,0) < 0) die("lseek");
81 if (read(image,buffer,1024) != 1024) die(argv[1]);
92 if (lseek(image, offse
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Dmachine_kexec_32.c27 * It merely copies the image relocation code to the control page and
31 void default_machine_kexec(struct kimage *image) argument
42 page_list = image->head;
46 (unsigned long)page_address(image->control_code_page);
59 (*rnk)(page_list, reboot_code_buffer_phys, image->start);
62 int default_machine_kexec_prepare(struct kimage *image) argument
/netgear-R7000-V1.0.7.12_1.2.5/src/
H A DMakefile31 install -d $(RELEASEDIR)/image
33 -cp router/$(PLT)/linux.trx $(RELEASEDIR)/image/linux-glibc.trx
34 -cp router/$(PLT)-uclibc/linux.trx $(RELEASEDIR)/image/linux.trx
35 -cp router/$(PLT)-uclibc/linux-gzip.trx $(RELEASEDIR)/image/linux-gzip.trx
36 -cp router/$(PLT)-uclibc/linux.bin $(RELEASEDIR)/image/linux.bin
37 -cp dongle/rte/wl/builds/4322-bmac-usbap/roml-ag-nodis/rtecdc.exe $(RELEASEDIR)/image/rtecdc-4323.exe
38 -cp dongle/rte/wl/builds/43236-bmac-usbap/roml-ag-nodis/rtecdc.exe $(RELEASEDIR)/image/rtecdc-43236.exe
40 $(MAKE) -C router sibling SIBLING_INSTALL_DIR=$(RELEASEDIR)/image
42 cp cfe/build/broadcom/bcm947xx/cfe.bin $(RELEASEDIR)/image/
43 cp cfe/build/broadcom/bcm947xx/compressed/cfez.bin $(RELEASEDIR)/image/
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/vme/devices/
H A Dvme_user.c52 * 0 = /dev/bus/vme/m0 First master image
53 * 1 = /dev/bus/vme/m1 Second master image
54 * 2 = /dev/bus/vme/m2 Third master image
55 * 3 = /dev/bus/vme/m3 Fourth master image
56 * 4 = /dev/bus/vme/s0 First slave image
57 * 5 = /dev/bus/vme/s1 Second slave image
58 * 6 = /dev/bus/vme/s2 Third slave image
59 * 7 = /dev/bus/vme/s3 Fourth slave image
89 #define PCI_BUF_SIZE 0x20000 /* Size of one slave image buffer */
92 * Structure to handle image relate
103 static image_desc_t image[VME_DEVS]; variable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/kernel/
H A Dmachine_kexec.c54 * Do what every setup is needed on image and the
58 int machine_kexec_prepare(struct kimage *image) argument
65 control_code_buffer = page_address(image->control_code_page);
70 ia64_kimage = image;
75 void machine_kexec_cleanup(struct kimage *image) argument
85 struct kimage *image = arg; local
88 unsigned long code_addr = (unsigned long)page_address(image->control_code_page);
93 BUG_ON(!image);
94 if (image->type == KEXEC_TYPE_CRASH) {
133 (*rnk)(image
138 machine_kexec(struct kimage *image) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/savage/
H A Dsavagefb_accel.c91 void savagefb_imageblit(struct fb_info *info, const struct fb_image *image) argument
96 u32 *src = (u32 *) image->data;
98 if (!image->width || !image->height)
101 if (image->depth != 1) {
102 cfb_imageblit(info, image);
107 fg = image->fg_color;
108 bg = image->bg_color;
110 fg = ((u32 *)info->pseudo_palette)[image->fg_color];
111 bg = ((u32 *)info->pseudo_palette)[image
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/kernel/
H A Dmachine_kexec.c41 * Do what every setup is needed on image and the
45 int machine_kexec_prepare(struct kimage *image) argument
50 void machine_kexec_cleanup(struct kimage *image) argument
54 static void kexec_info(struct kimage *image) argument
58 for (i = 0; i < image->nr_segments; i++) {
61 (unsigned int)image->segment[i].mem,
62 (unsigned int)image->segment[i].mem +
63 image->segment[i].memsz,
64 (unsigned int)image->segment[i].memsz);
66 printk(" start : 0x%08x\n\n", (unsigned int)image
73 machine_kexec(struct kimage *image) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tests/fate/
H A Dexif.mak2 FATE_SAMPLES_EXIF-$(call DEMDEC, IMAGE2, TIFF) += fate-exif-image-tiff
3 fate-exif-image-tiff: CMD = probeframes $(TARGET_SAMPLES)/exif/image_small.tiff
6 FATE_SAMPLES_EXIF-$(call DEMDEC, IMAGE2, MJPEG) += fate-exif-image-jpg
7 fate-exif-image-jpg: CMD = probeframes $(TARGET_SAMPLES)/exif/image_small.jpg
10 FATE_SAMPLES_EXIF-$(call DEMDEC, IMAGE2, WEBP) += fate-exif-image-webp
11 fate-exif-image-webp: CMD = probeframes $(TARGET_SAMPLES)/exif/image_small.webp
14 FATE_SAMPLES_EXIF-$(call ALLYES, MP3_DEMUXER IMAGE2_DEMUXER MJPEG_DECODER) += fate-exif-image-embedded
15 fate-exif-image-embedded: CMD = probeframes $(TARGET_SAMPLES)/exif/embedded_small.mp3
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/boot/
H A DMakefile14 # needed to build the 32 bit image. That's normally the same
172 image-$(CONFIG_PPC_PSERIES) += zImage.pseries
173 image-$(CONFIG_PPC_MAPLE) += zImage.maple
174 image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries
175 image-$(CONFIG_PPC_PS3) += dtbImage.ps3
176 image-$(CONFIG_PPC_CELLEB) += zImage.pseries
177 image-$(CONFIG_PPC_CELL_QPACE) += zImage.pseries
178 image-$(CONFIG_PPC_CHRP) += zImage.chrp
179 image-$(CONFIG_PPC_EFIKA) += zImage.chrp
180 image
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/boot/
H A DMakefile11 targets := image
15 $(obj)/image: vmlinux FORCE
24 install: $(CONFIGURE) $(obj)/image
25 sh -x $(srctree)/$(obj)/install.sh $(KERNELRELEASE) $(obj)/image \

Completed in 340 milliseconds

1234567891011>>