Searched refs:image (Results 101 - 125 of 522) sorted by relevance

1234567891011>>

/external/libvncserver/VisualNaCro/
H A Dnacro.c143 image_t* image; local
147 if(res==0 || (cl=res->client)==0 || (image=res->grep_image)==0)
150 x_start=x-image->width;
151 y_start=y-image->height;
154 if(x_end+image->width>cl->width) x_end=cl->width-image->width;
155 if(y_end+image->height>cl->height) y_end=cl->height-image->height;
157 /* find image and set x_origin,y_origin if found */
162 for(j=0;matching && j<image
279 image_t* image; local
328 free_image(image_t* image) argument
363 image_t *image; local
511 image_t* image; local
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
H A Dstyle_sheet.py53 image = images_by_url[url]
55 ext = os.path.splitext(image.absolute_path)[1]
56 data = base64.standard_b64encode(image.contents)
58 return "url(data:image/%s;base64,%s)" % (ext[1:], data)
84 image = self.loader.LoadImage(abs_path)
85 image.aliases.append(url)
86 return image
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCFlatButton.java96 // draw image
97 Image image = getImage();
98 if (image != null) {
99 Rectangle imageBounds = image.getBounds();
103 gc.drawImage(image, x, y);
153 public void setImage(Image image) { argument
154 m_image = image;
/external/libpcap/
H A Dbpf_image.c61 static char image[256]; local
296 (void)snprintf(image, sizeof image,
300 (void)snprintf(image, sizeof image,
304 return image;
/external/skia/samplecode/
H A DSampleTextureDomain.cpp70 SkAutoTUnref<SkImage> image(surface->newImageSnapshot());
74 canvas->drawImageRect(image, &srcRect, dstRect, &paint);
86 canvas->drawImageRect(image, &srcRect, dstRect, &paint);
/external/skia/src/ports/
H A DSkImageDecoder_CG.cpp142 CGImageRef image = CGImageSourceCreateImageAtIndex(imageSrc, 0, NULL); local
143 if (NULL == image) {
146 SkAutoTCallVProc<CGImage, CGImageRelease> arimage(image);
148 const int width = SkToInt(CGImageGetWidth(image));
149 const int height = SkToInt(CGImageGetHeight(image));
152 CGColorSpaceRef cs = CGImageGetColorSpace(image);
171 if (!SkCopyPixelsFromCGImage(bm->info(), bm->rowBytes(), bm->getPixels(), image)) {
175 CGImageAlphaInfo info = CGImageGetAlphaInfo(image);
192 // CGBitmapContext does not support unpremultiplied, so the image has been premultiplied.
212 // If no image decode
313 CGImageRef image = SkCreateCGImageRef(*bmPtr); local
[all...]
/external/vboot_reference/scripts/image_signing/
H A Dalign_rootfs.sh7 # Script to preserve the on-disk file layout of the specified image and
8 # the latest shipping image. This is accomplished by copying the new rootfs
9 # over a template rootfs (aka the latest shipping image) to preserve as much
22 DEFINE_string image "" \
23 "The image that needs to be aligned to the latest shipping image."
25 "The image to align against."
76 # Zeroes the rootfs free space in the specified image.
79 local image=$1
82 mount_image_partition "${image}"
[all...]
/external/chromium-trace/trace-viewer/tracing/tracing/ui/base/
H A Ddrag_handle.css13 background-image: -webkit-gradient(linear,
26 background-image: -webkit-gradient(linear,
/external/e2fsprogs/lib/
H A DMakefile.darwin-lib13 all:: image
22 image: $(BSD_LIB)
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DStatistics.java156 * @param image The image that was set
159 public void onTextureUse(Image image, boolean wasSwitched){ argument
160 assert image.getId() >= 1;
162 if (!texturesUsed.contains(image.getId()))
163 texturesUsed.add(image.getId());
/external/kernel-headers/original/uapi/linux/
H A Dcycx_cfm.h27 #define CFM_IMAGE_SIZE 0x20000 /* max size of CYCX code image file */
80 * @checksum - info + image
84 * @image - code image (variable size)
93 unsigned char image[0]; member in struct:cycx_firmware
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d_image.h40 egl_g3d_destroy_image(_EGLDriver *drv, _EGLDisplay *dpy, _EGLImage *image);
/external/skia/src/codec/
H A DSkCodec_libgif.h22 * Checks the start of the stream to see if the image is a gif
29 * Reads enough of the stream to determine the image format
79 static void FreeExtension(SavedImage* image);
86 * @param stream the stream of image data
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSkyFactory.java21 * be attached to the scene to display a sky image in the background.
41 * then the image is taken from it and is inserted into a TextureCubeMap</li>
63 * then the image is taken from it and is inserted into a TextureCubeMap</li>
97 private static void checkImage(Image image) { argument
98 // if (image.getDepth() != 1)
101 if (image.getWidth() != image.getHeight()) {
105 if (image.getMultiSamples() != 1) {
125 Image image = images[i];
127 if (image
[all...]
/external/libpng/
H A Dpngerror.c884 png_imagep image = png_voidcast(png_imagep, png_ptr->error_ptr); local
889 if (image != NULL)
891 png_safecat(image->message, (sizeof image->message), 0, error_message);
892 image->warning_or_error |= PNG_IMAGE_ERROR;
898 if (image->opaque != NULL && image->opaque->error_buf != NULL)
899 longjmp(png_control_jmp_buf(image->opaque), 1);
903 size_t pos = png_safecat(image->message, (sizeof image
919 png_imagep image = png_voidcast(png_imagep, png_ptr->error_ptr); local
933 volatile png_imagep image = image_in; local
[all...]
/external/libvncserver/client_examples/
H A Dgtkvncviewer.c34 static GdkImage *image = NULL; local
40 image = gdk_drawable_get_image (widget->window, 0, 0,
44 cl->frameBuffer= image->mem;
49 cl->format.bitsPerPixel = image->bits_per_pixel;
50 cl->format.redShift = image->visual->red_shift;
51 cl->format.greenShift = image->visual->green_shift;
52 cl->format.blueShift = image->visual->blue_shift;
54 cl->format.redMax = (1 << image->visual->red_prec) - 1;
55 cl->format.greenMax = (1 << image->visual->green_prec) - 1;
56 cl->format.blueMax = (1 << image
65 image, local
617 GdkImage *image; local
[all...]
/external/pdfium/samples/fx_lpng/lpng_v163/
H A Dfx_pngerror.c857 png_imagep image = png_voidcast(png_imagep, png_ptr->error_ptr); local
862 if (image != NULL)
864 png_safecat(image->message, (sizeof image->message), 0, error_message);
865 image->warning_or_error |= PNG_IMAGE_ERROR;
871 if (image->opaque != NULL && image->opaque->error_buf != NULL)
872 longjmp(png_control_jmp_buf(image->opaque), 1);
876 size_t pos = png_safecat(image->message, (sizeof image
892 png_imagep image = png_voidcast(png_imagep, png_ptr->error_ptr); local
906 volatile png_imagep image = image_in; local
[all...]
/external/chromium-trace/trace-viewer/tracing/tracing/ui/tracks/
H A Dprocess_track_base.css8 background-image: -webkit-gradient(linear,
/external/deqp/framework/egl/
H A DegluUnique.cpp98 UniqueImage::UniqueImage (const Library& egl, EGLDisplay display, EGLImage image) argument
101 , m_image (image)
/external/e2fsprogs/tests/
H A DMakefile.in61 dd if=/dev/zero of=${TDIR}/image bs=1k count=8k
62 $(top_srcdir)/misc/mke2fs -j -F -N 256 ${TDIR}/image
64 @echo; echo; echo "New test filesystem at ${TDIR}/image."
70 testend: test_one ${TDIR}/image
71 gzip -9 ${TDIR}/image
/external/mesa3d/src/egl/main/
H A Deglimage.h63 /* An image is a display resource */
78 * Increment reference count for the image.
90 * Decrement reference count for the image.
100 * Link an image to its display and return the handle of the link.
112 * Unlink a linked image from its display.
113 * Accessing an unlinked image should generate EGL_BAD_PARAMETER error.
123 * Lookup a handle to find the linked image.
124 * Return NULL if the handle has no corresponding linked image.
127 _eglLookupImage(EGLImageKHR image, _EGLDisplay *dpy) argument
129 _EGLImage *img = (_EGLImage *) image;
[all...]
/external/mesa3d/src/gallium/state_trackers/va/
H A Dva_private.h109 VAStatus vlVaCreateImage(VADriverContextP ctx,VAImageFormat *format,int width,int height,VAImage *image);
110 VAStatus vlVaDeriveImage(VADriverContextP ctx,VASurfaceID surface,VAImage *image);
111 VAStatus vlVaDestroyImage(VADriverContextP ctx,VAImageID image);
112 VAStatus vlVaSetImagePalette(VADriverContextP ctx,VAImageID image, unsigned char *palette);
113 VAStatus vlVaGetImage(VADriverContextP ctx,VASurfaceID surface,int x,int y,unsigned int width,unsigned int height,VAImageID image);
116 VAImageID image,
126 VAStatus vlVaCreateSubpicture(VADriverContextP ctx,VAImageID image,VASubpictureID *subpicture);
128 VAStatus vlVaSubpictureImage(VADriverContextP ctx,VASubpictureID subpicture,VAImageID image);
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_texture.h50 void radeon_teximage_map(radeon_texture_image *image, GLboolean write_enable);
51 void radeon_teximage_unmap(radeon_texture_image *image);
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_texture.h50 void radeon_teximage_map(radeon_texture_image *image, GLboolean write_enable);
51 void radeon_teximage_unmap(radeon_texture_image *image);
/external/mesa3d/src/mesa/main/
H A Dtexcompress_cpal.c83 const void *indices, GLuint num_pixels, GLubyte *image)
85 GLubyte *pix = image;
186 /* first image follows the palette */
195 GLubyte *image = NULL; local
209 /* allocate and fill dest image buffer */
211 image = (GLubyte *) malloc(num_texels * info->size);
212 paletted_to_color(info, palette, indices, num_texels, image);
216 info->format, info->type, image);
217 if (image)
218 free(image);
82 paletted_to_color(const struct cpal_format_info *info, const GLubyte *palette, const void *indices, GLuint num_pixels, GLubyte *image) argument
[all...]

Completed in 1077 milliseconds

1234567891011>>