Searched refs:image (Results 26 - 50 of 612) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/xtensa/boot/boot-elf/
H A Dboot.lds.S45 .image 0xd0001000:
48 *(image)
54 .bss ((LOADADDR(.image) + SIZEOF(.image) + 3) & ~ 3):
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/pwc/
H A Dpwc-uncompress.c41 void *yuv, *image; local
51 image = pdev->image_data;
52 image += pdev->images[pdev->fill_image].offset;
59 struct pwc_raw_frame *raw_frame = image;
73 * size (which may be larger than the image size).
85 dsty = (u16 *)(image + stride);
89 dstu = (u16 *)(image + n + stride);
90 dstv = (u16 *)(image + n + n / 4 + stride);
93 stride = (pdev->view.x - pdev->image.x) / 2; /* u16 is 2 bytes */
95 for (line = 0; line < pdev->image
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/image/
H A Dmakefile.unx50 all: image
59 rm -f image
61 image: $(IMAGE_OBJECTS)
64 image_image.o: ./image.cpp
H A Dmakefile.dmc28 all : $(OBJS)\image.exe data
34 -if exist $(OBJS)\image.exe del $(OBJS)\image.exe
35 -if exist $(OBJS)\image.map del $(OBJS)\image.map
37 $(OBJS)\image.exe : $(IMAGE_OBJECTS) $(OBJS)\image_image.res
38 link /NOLOGO /SILENT /NOI /DELEXECUTABLE /EXETYPE:NT /DEBUG /CODEVIEW /su:windows:4.0 $(LDFLAGS) $(IMAGE_OBJECTS),$@,$(OBJS)\image.map, $(LIBDIRNAME)\ wxmsw$(WX_RELEASE_NODOT)d$(WX_LIB_FLAVOUR)_core.lib wxbase$(WX_RELEASE_NODOT)d$(WX_LIB_FLAVOUR).lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib \ kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib,, $(OBJS)\image_image.res
44 $(OBJS)\image_image.obj : .\image.cpp
45 $(CXX) -mn -c -cpp -o$@ $(IMAGE_CXXFLAGS) .\image.cpp
47 $(OBJS)\image_image.res : .\image
[all...]
H A Dimage.cpp2 // Name: samples/image/image.cpp
7 // RCS-ID: $Id: image.cpp 43832 2006-12-06 17:13:11Z VZ $
23 #include "wx/image.h"
164 wxImage image = m_bitmap.ConvertToImage(); local
222 image.SetOption(wxIMAGE_OPTION_BMP_FORMAT, format);
229 image.SetPalette(wxPalette(256, cmap, cmap, cmap));
264 image.SetOption(wxIMAGE_OPTION_PNG_FORMAT, pngvalues[sel]);
265 image.SetOption(wxIMAGE_OPTION_PNG_BITDEPTH, sel % 2 ? 16 : 8);
270 image
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dimagtga.h13 #include "wx/image.h"
29 m_mime = wxT("image/tga");
33 virtual bool LoadFile(wxImage* image, wxInputStream& stream,
35 virtual bool SaveFile(wxImage* image, wxOutputStream& stream,
H A Dimagxpm.h13 #include "wx/image.h"
28 m_mime = wxT("image/xpm");
32 virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
33 virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
H A Dimagbmp.h13 #include "wx/image.h"
58 m_mime = wxT("image/x-bmp");
62 virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
63 virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
67 bool SaveDib(wxImage *image, wxOutputStream& stream, bool verbose,
69 bool DoLoadDib(wxImage *image, int width, int height, int bpp, int ncolors,
72 bool LoadDib(wxImage *image, wxInputStream& stream, bool verbose, bool IsBmp);
92 m_mime = wxT("image/x-ico");
96 virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
97 virtual bool LoadFile( wxImage *image, wxInputStrea
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/
H A Ddefpalo.conf13 # (Edit the ramdisk image name!!!!)
14 --ramdisk=ram-disk-image-file
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/kernel/
H A Dmachine_kexec.c46 machine_kexec(struct kimage *image) argument
53 (unsigned long)page_address(image->control_code_page);
55 kexec_start_address = image->start;
57 (unsigned long) phys_to_virt(image->head & PAGE_MASK);
68 for (ptr = &image->head; (entry = *ptr) && !(entry &IND_DONE);
81 printk("Will call new kernel at %08lx\n", image->start);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dimagfill.cpp25 #include "wx/image.h"
59 wxImageFloodFill(wxImage *image, argument
72 int width = image->GetWidth();
73 int height = image->GetHeight();
86 if ( image->GetRed(x,y) != r
87 || image->GetGreen(x,y) != g
88 || image->GetBlue (x,y) != b )
111 image->SetRGB(xt,yt,r,g,b);
118 if(MatchPixel(image,xt,yt-1,width,height,testColour))
124 image
315 wxImage image = bitmap.ConvertToImage(); local
[all...]
H A Dimaggif.cpp36 bool wxGIFHandler::LoadFile(wxImage *image, wxInputStream& stream, argument
43 // image->Destroy();
54 wxLogError(_("GIF: error in GIF image format."));
71 /* go on; image data is OK */
76 ok = decod->ConvertToImage(index != -1 ? (size_t)index : 0, image);
88 bool wxGIFHandler::SaveFile( wxImage * WXUNUSED(image),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/dfb/
H A Dbitmap.cpp25 #include "wx/image.h"
34 static wxIDirectFBSurfacePtr CreateSurfaceForImage(const wxImage& image) argument
36 wxCHECK_MSG( image.Ok(), NULL, _T("invalid image") );
39 wxCHECK_MSG( !image.HasAlpha(), NULL, _T("alpha channel not supported") );
46 desc.width = image.GetWidth();
47 desc.height = image.GetHeight();
49 desc.preallocated[0].data = image.GetData();
138 wxBitmap::wxBitmap(const wxImage& image, int depth) argument
140 wxCHECK_RET( image
267 wxImage image; local
294 wxImage image = ConvertToImage(); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dx11grab.c73 XImage *image; /**< X11 image holding the grab */ member in struct:x11grab
165 XImage *image; local
231 image = XShmCreateImage(dpy,
239 image->bytes_per_line * image->height,
246 x11grab->shminfo.shmaddr = image->data = shmat(x11grab->shminfo.shmid, 0, 0);
256 image = XGetImage(dpy, RootWindow(dpy, screen),
262 switch (image->bits_per_pixel) {
277 if ( image
349 paint_mouse_pointer(XImage *image, struct x11grab *s) argument
425 xget_zpixmap(Display *dpy, Drawable d, XImage *image, int x, int y) argument
473 XImage *image = s->image; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavdevice/
H A Dx11grab.c73 XImage *image; /**< X11 image holding the grab */ member in struct:x11_grab
163 XImage *image; local
226 image = XShmCreateImage(dpy,
234 image->bytes_per_line * image->height,
241 x11grab->shminfo.shmaddr = image->data = shmat(x11grab->shminfo.shmid, 0, 0);
251 image = XGetImage(dpy, RootWindow(dpy, screen),
257 switch (image->bits_per_pixel) {
263 if ( image
334 paint_mouse_pointer(XImage *image, struct x11_grab *s) argument
402 xget_zpixmap(Display *dpy, Drawable d, XImage *image, int x, int y) argument
450 XImage *image = s->image; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Dcfbimgblt.c12 * This function copys a image from system memory to video memory. The
13 * image can be a bitmap where each 0 represents the background color and
15 * also be a color image. This is determined by image_depth. The color image
75 static inline void color_imageblit(const struct fb_image *image, argument
86 const u8 *src = image->data;
90 for (i = image->height; i--; ) {
91 n = image->width;
137 static inline void slow_imageblit(const struct fb_image *image, struct fb_info *p, argument
147 u32 spitch = (image
215 fast_imageblit(const struct fb_image *image, struct fb_info *p, u8 __iomem *dst1, u32 fgcolor, u32 bgcolor) argument
265 cfb_imageblit(struct fb_info *p, const struct fb_image *image) argument
[all...]
H A Dsysimgblt.c52 static void color_imageblit(const struct fb_image *image, struct fb_info *p, argument
61 const u8 *src = image->data;
64 for (i = image->height; i--; ) {
65 n = image->width;
111 static void slow_imageblit(const struct fb_image *image, struct fb_info *p, argument
119 u32 spitch = (image->width+7)/8;
120 const u8 *src = image->data, *s;
127 for (i = image->height; i--; ) {
130 j = image->width;
182 * image
186 fast_imageblit(const struct fb_image *image, struct fb_info *p, void *dst1, u32 fgcolor, u32 bgcolor) argument
240 sys_imageblit(struct fb_info *p, const struct fb_image *image) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/mb862xx/
H A Dmb862xxfb_accel.c72 * Fill in the cmd array /GDC FIFO commands/ to draw a 1bit image.
77 u32 bgcolor, const struct fb_image *image,
96 line = image->data;
97 bytes = (image->width + 7) >> 3;
99 /* and the image */
121 * Fill in the cmd array /GDC FIFO commands/ to draw a 8bit image.
126 u32 bgcolor, const struct fb_image *image,
139 line = ptr = image->data;
140 bytes = image->width;
160 * Fill in the cmd array /GDC FIFO commands/ to draw a 16bit image
75 mb86290fb_imageblit1(u32 *cmd, u16 step, u16 dx, u16 dy, u16 width, u16 height, u32 fgcolor, u32 bgcolor, const struct fb_image *image, struct fb_info *info) argument
124 mb86290fb_imageblit8(u32 *cmd, u16 step, u16 dx, u16 dy, u16 width, u16 height, u32 fgcolor, u32 bgcolor, const struct fb_image *image, struct fb_info *info) argument
163 mb86290fb_imageblit16(u32 *cmd, u16 step, u16 dx, u16 dy, u16 width, u16 height, u32 fgcolor, u32 bgcolor, const struct fb_image *image, struct fb_info *info) argument
188 mb86290fb_imageblit(struct fb_info *info, const struct fb_image *image) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/console/
H A Dfbcon_ud.c88 struct fb_image *image, u8 *buf, u8 *dst)
105 image->height);
108 image->height);
113 info->fbops->fb_imageblit(info, image);
120 struct fb_image *image, u8 *buf,
139 image->height, shift_high,
147 info->fbops->fb_imageblit(info, image);
155 struct fb_image image; local
171 image.fg_color = fg;
172 image
85 ud_putcs_aligned(struct vc_data *vc, struct fb_info *info, const u16 *s, u32 attr, u32 cnt, u32 d_pitch, u32 s_pitch, u32 cellsize, struct fb_image *image, u8 *buf, u8 *dst) argument
116 ud_putcs_unaligned(struct vc_data *vc, struct fb_info *info, const u16 *s, u32 attr, u32 cnt, u32 d_pitch, u32 s_pitch, u32 cellsize, struct fb_image *image, u8 *buf, u8 *dst) argument
[all...]
H A Dbitblit.c80 struct fb_image *image, u8 *buf, u8 *dst)
97 image->height);
100 image->height);
105 info->fbops->fb_imageblit(info, image);
112 struct fb_image *image, u8 *buf,
131 image->height, shift_high,
139 info->fbops->fb_imageblit(info, image);
147 struct fb_image image; local
157 image.fg_color = fg;
158 image
77 bit_putcs_aligned(struct vc_data *vc, struct fb_info *info, const u16 *s, u32 attr, u32 cnt, u32 d_pitch, u32 s_pitch, u32 cellsize, struct fb_image *image, u8 *buf, u8 *dst) argument
108 bit_putcs_unaligned(struct vc_data *vc, struct fb_info *info, const u16 *s, u32 attr, u32 cnt, u32 d_pitch, u32 s_pitch, u32 cellsize, struct fb_image *image, u8 *buf, u8 *dst) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlibopenjpegenc.c45 opj_image_t *image; member in struct:__anon3175
167 // x0, y0 is the top left corner of the image
230 ctx->image = mj2_create_image(avctx, &ctx->enc_params);
231 if (!ctx->image) {
232 av_log(avctx, AV_LOG_ERROR, "Error creating the mj2 image\n");
236 opj_setup_encoder(ctx->compress, &ctx->enc_params, ctx->image);
264 opj_image_destroy(ctx->image);
265 ctx->image = NULL;
270 static int libopenjpeg_copy_packed8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image) argument
277 const int numcomps = image
310 libopenjpeg_copy_packed12(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image) argument
349 libopenjpeg_copy_packed16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image) argument
389 libopenjpeg_copy_unpacked8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image) argument
430 libopenjpeg_copy_unpacked16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image) argument
478 opj_image_t *image = ctx->image; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dmask.cpp28 #include "wx/image.h"
51 wxImage image(imgSrc.ConvertToMono(clr.Red(), clr.Green(), clr.Blue()));
52 if ( !image.Ok() )
55 m_bitmap = wxBitmap(image, 1);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/boot/
H A Dpiggyback_32.c2 Simple utility to make a single-image install kernel with initial ramdisk
35 * as PROM looks for a.out image only.
58 /* fs_img.gz is an image of initial ramdisk. */
60 fprintf(stderr, "\tKernel image will be modified in place.\n");
77 int image, tail; local
95 if ((image = open(argv[1],O_RDWR)) < 0) die(argv[1]);
96 if (read(image,buffer,512) != 512) die(argv[1]);
100 if (lseek(image,i,0) < 0) die("lseek");
101 if (read(image,buffer,512) != 512) die(argv[1]);
111 if (lseek(image,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/tile/kernel/
H A Dmachine_kexec.c75 int machine_kexec_prepare(struct kimage *image) argument
83 if (image->type != KEXEC_TYPE_DEFAULT) {
87 image->type);
93 void machine_kexec_cleanup(struct kimage *image) argument
170 static void kexec_find_and_set_command_line(struct kimage *image) argument
178 for (ptr = &image->head;
248 NORET_TYPE void machine_kexec(struct kimage *image) argument
257 kexec_find_and_set_command_line(image);
264 homecache_change_page_home(image->control_code_page, 0,
266 reboot_code_buffer = vmap(&image
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/amps/langs/
H A Deu.inc37 // image will look messy
68 $text["baseimgerr"] = "Cannot find base image";

Completed in 329 milliseconds

1234567891011>>