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

1234567891011>>

/external/eigen/doc/examples/
H A DTutorialLinAlgRankRevealing.cpp19 << lu_decomp.image(A) << endl; // yes, have to pass the original A
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
H A DLwjglDisplay.java38 import java.awt.image.BufferedImage;
206 BufferedImage image = (BufferedImage) images[i];
207 out[i] = imageToByteBuffer(image);
212 private ByteBuffer imageToByteBuffer(BufferedImage image) { argument
213 if (image.getType() != BufferedImage.TYPE_INT_ARGB_PRE) {
214 BufferedImage convertedImage = new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_INT_ARGB_PRE);
216 double width = image.getWidth() * (double) 1;
217 double height = image.getHeight() * (double) 1;
218 g.drawImage(image, (in
[all...]
/external/skia/src/animator/
H A DSkDrawShader.cpp48 SK_MEMBER(image, BaseBitmap)
55 SkDrawBitmapShader::SkDrawBitmapShader() : filterBitmap(-1), image(NULL) {}
66 if (image == NULL)
75 SkShader* shader = SkShader::CreateBitmapShader(image->fBitmap,
H A DSkDrawShader.h23 SkBaseBitmap* image; member in class:SkDrawBitmapShader
/external/skia/src/core/
H A DSkPaintPriv.h45 bool isPaintOpaque(const SkPaint* paint, const SkImage* image);
/external/skia/src/image/
H A DSkImage_Base.h26 * If the props weren't know at constructor time, call this but only before the image is
69 static inline SkImage_Base* as_IB(SkImage* image) { argument
70 return static_cast<SkImage_Base*>(image);
73 static inline const SkImage_Base* as_IB(const SkImage* image) { argument
74 return static_cast<const SkImage_Base*>(image);
H A DSkSurface_Gpu.cpp50 SkImage* image = NULL; local
53 image = SkNEW_ARGS(SkImage_Gpu,
57 if (image) {
58 as_IB(image)->initWithProps(this->props());
60 return image;
73 // are we sharing our render target with the image? Note this call should never create a new
74 // image because onCopyOnWrite is only called when there is a cached image.
75 SkImage* image = this->getCachedImage(kNo_Budgeted); local
76 SkASSERT(image);
[all...]
H A DSkImagePriv.h14 // Call this if you explicitly want to use/share this pixelRef in the image
36 // Given an image created from SkNewImageFromBitmap, return its pixelref. This
37 // may be called to see if the surface and the image share the same pixelref,
41 // When a texture is shared by a surface and an image its budgeted status is that of the
43 // for the orphaned image to determine whether the original texture counts against the
47 // Update the texture wrapped by an image created with NewTexture. This
48 // is called when a surface and image share the same GrTexture and the
50 extern void SkTextureImageSetTexture(SkImage* image, GrTexture* texture);
/external/vboot_reference/scripts/image_signing/
H A Dset_lsb_release.sh7 # Customizes a Chrome OS release image by setting /etc/lsb-release values.
29 Usage: $PROG <image.bin> [<key> <value> [<key> <value> ...]]
47 local image=$1
53 mount_image_partition_ro "${image}" 3 "${rootfs}"
55 mount_image_partition "${image}" 3 "${rootfs}"
56 touch "${image}" # Updates the image modification time.
H A Dsign_official_build.sh7 # Sign the final build image using the "official" keys.
28 ssd (sign an SSD image)
29 recovery (sign a USB recovery image)
30 factory (sign a factory install image)
33 firmware (sign a firmware image)
34 usb (sign an image to boot directly from USB)
35 verify (verify an image including rootfs hashes)
37 output_image: File name of the signed output image
40 If you are signing an image, you must specify an [output_image] and
98 local image
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DBooleanObjectPropertyEditor.java52 Image image = booleanValue ? m_trueImage : m_falseImage;
54 paint(gc, x, y, width, height, text, image);
57 Image image = m_nullImage;
59 paint(gc, x, y, width, height, text, image);
63 private void paint(GC gc, int x, int y, int width, int height, String text, Image image) { argument
64 // draw image
66 DrawUtils.drawImageCV(gc, image, x, y, height);
68 int imageWidth = image.getBounds().width + 2;
86 // check that user clicked on image
/external/ceres-solver/examples/
H A Ddenoising.cc55 DEFINE_string(input, "", "File to which the output image should be written");
57 DEFINE_string(output, "", "File to which the output image should be written");
90 const PGMImage<double>& image,
96 for (unsigned index = 0; index < image.NumPixels(); ++index) {
99 image.PixelFromLinearIndex(index));
114 // Add FoE regularization for each patch in the image.
115 for (int x = 0; x < image.width() - (foe.Size() - 1); ++x) {
116 for (int y = 0; y < image.height() - (foe.Size() - 1); ++y) {
176 usage("This program denoises an image using Ceres. Sample usage:\n");
178 usage += " --input=<noisy image PG
89 CreateProblem(const FieldsOfExperts& foe, const PGMImage<double>& image, Problem* problem, PGMImage<double>* solution) argument
[all...]
/external/libunwind/src/ia64/
H A DGfind_unwind_table.c39 Elf64_Ehdr *ehdr = edi->ei.image;
50 Elf64_Dyn *dyn = (Elf64_Dyn *) (pdyn->p_offset + (char *) edi->ei.image);
69 Debug (1, "section table outside of image? (%lu > %lu)",
75 shdr = (Elf64_Shdr *) ((char *) edi->ei.image + soff);
76 str_shdr = (Elf64_Shdr *) ((char *) edi->ei.image + str_soff);
77 strtab = (char *) edi->ei.image + str_shdr->sh_offset;
83 gp = ((Elf64_Addr *) ((char *) edi->ei.image + shdr->sh_offset))[1];
90 Debug (16, "image at %p, gp = %lx\n", edi->ei.image, gp);
106 ehdr = edi->ei.image;
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_tex_image.c29 /* Work back from the specified level of the image to the baselevel and create a
60 /* If this image disrespects BaseLevel, allocate from level zero.
68 /* Figure out image dimensions at start level. */
134 struct gl_texture_image *image,
138 struct intel_texture_image *intelImage = intel_texture_image(image);
152 DBG("%s: image transfer\n", __FUNCTION__);
163 ctx->Driver.AllocTextureImageBuffer(ctx, image);
178 src_stride = image->Width;
192 0, 0, dst_x, dst_y, image->Width, image
133 try_pbo_upload(struct gl_context *ctx, struct gl_texture_image *image, const struct gl_pixelstore_attrib *unpack, GLenum format, GLenum type, const void *pixels) argument
235 intel_set_texture_image_region(struct gl_context *ctx, struct gl_texture_image *image, struct intel_region *region, GLenum target, GLenum internalFormat, gl_format format, uint32_t offset) argument
338 __DRIimage *image; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_tex_image.c29 /* Work back from the specified level of the image to the baselevel and create a
60 /* If this image disrespects BaseLevel, allocate from level zero.
68 /* Figure out image dimensions at start level. */
134 struct gl_texture_image *image,
138 struct intel_texture_image *intelImage = intel_texture_image(image);
152 DBG("%s: image transfer\n", __FUNCTION__);
163 ctx->Driver.AllocTextureImageBuffer(ctx, image);
178 src_stride = image->Width;
192 0, 0, dst_x, dst_y, image->Width, image
133 try_pbo_upload(struct gl_context *ctx, struct gl_texture_image *image, const struct gl_pixelstore_attrib *unpack, GLenum format, GLenum type, const void *pixels) argument
235 intel_set_texture_image_region(struct gl_context *ctx, struct gl_texture_image *image, struct intel_region *region, GLenum target, GLenum internalFormat, gl_format format, uint32_t offset) argument
338 __DRIimage *image; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_tex_image.c29 /* Work back from the specified level of the image to the baselevel and create a
60 /* If this image disrespects BaseLevel, allocate from level zero.
68 /* Figure out image dimensions at start level. */
134 struct gl_texture_image *image,
138 struct intel_texture_image *intelImage = intel_texture_image(image);
152 DBG("%s: image transfer\n", __FUNCTION__);
163 ctx->Driver.AllocTextureImageBuffer(ctx, image);
178 src_stride = image->Width;
192 0, 0, dst_x, dst_y, image->Width, image
133 try_pbo_upload(struct gl_context *ctx, struct gl_texture_image *image, const struct gl_pixelstore_attrib *unpack, GLenum format, GLenum type, const void *pixels) argument
235 intel_set_texture_image_region(struct gl_context *ctx, struct gl_texture_image *image, struct intel_region *region, GLenum target, GLenum internalFormat, gl_format format, uint32_t offset) argument
338 __DRIimage *image; local
[all...]
/external/libpng/
H A Dpngread.c87 /* Read the information before the actual image data. This has been
618 /* Read one or more rows of image data. If the image is interlaced,
621 * image has alpha or transparency, and png_handle_alpha()[*] has been
625 * "row" holds the actual image, and pixels are placed in it
626 * as they arrive. If the image is displayed after each pass, it will
628 * "chunky" progressive image, with finer detail added as it becomes
632 * If you have called png_handle_alpha(), and the image has either an
635 * also, but you may. If the image is not interlaced, or if you have
827 /* Read the entire image
840 png_read_image(png_structrp png_ptr, png_bytepp image) argument
1412 png_imagep image; member in struct:__anon9090
1432 png_image_read_init(png_imagep image) argument
1535 png_imagep image = png_voidcast(png_imagep, argument); local
1596 png_image_begin_read_from_stdio(png_imagep image, FILE* file) argument
1626 png_image_begin_read_from_file(png_imagep image, const char *file_name) argument
1669 png_imagep image = png_voidcast(png_imagep, png_ptr->io_ptr); local
1694 png_image_begin_read_from_memory(png_imagep image, png_const_voidp memory, png_size_t size) argument
1889 png_imagep image = display->image; local
2213 const png_imagep image = display->image; local
3054 png_imagep image = display->image; local
3243 png_imagep image = display->image; local
3376 png_imagep image = display->image; local
3502 png_imagep image = display->image; local
3780 png_imagep image = display->image; local
4202 png_image_finish_read(png_imagep image, png_const_colorp background, void *buffer, png_int_32 row_stride, void *colormap) argument
[all...]
/external/pdfium/samples/fx_lpng/lpng_v163/
H A Dfx_pngread.c82 /* Read the information before the actual image data. This has been
542 /* Read one or more rows of image data. If the image is interlaced,
545 * image has alpha or transparency, and png_handle_alpha()[*] has been
549 * "row" holds the actual image, and pixels are placed in it
550 * as they arrive. If the image is displayed after each pass, it will
552 * "chunky" progressive image, with finer detail added as it becomes
556 * If you have called png_handle_alpha(), and the image has either an
559 * also, but you may. If the image is not interlaced, or if you have
609 /* Read the entire image
622 png_read_image(png_structrp png_ptr, png_bytepp image) argument
1153 png_imagep image; member in struct:__anon13367
1173 png_image_read_init(png_imagep image) argument
1276 png_imagep image = png_voidcast(png_imagep, argument); local
1337 png_image_begin_read_from_stdio(png_imagep image, FILE* file) argument
1367 png_image_begin_read_from_file(png_imagep image, const char *file_name) argument
1410 png_imagep image = png_voidcast(png_imagep, png_ptr->io_ptr); local
1435 png_image_begin_read_from_memory(png_imagep image, png_const_voidp memory, png_size_t size) argument
1623 png_imagep image = display->image; local
1947 const png_imagep image = display->image; local
2788 png_imagep image = display->image; local
2978 png_imagep image = display->image; local
3111 png_imagep image = display->image; local
3238 png_imagep image = display->image; local
3510 png_imagep image = display->image; local
3932 png_image_finish_read(png_imagep image, png_const_colorp background, void *buffer, png_int_32 row_stride, void *colormap) argument
[all...]
/external/skia/gm/
H A Dimage.cpp27 SkImage* image = SkImage::NewFromData(data); local
28 if (image) {
30 canvas->scale(size.width() * 1.0f / image->width(),
31 size.height() * 1.0f / image->height());
32 canvas->drawImage(image, 0, 0, NULL);
33 image->unref();
126 return SkString("image-surface");
205 SkString onShortName() override { return SkString("image-resize"); }
234 void drawResized(SkCanvas* canvas, SkImage* image, int newW, int newH, const SkIRect* subset, argument
244 canvas->drawImageRect(image, subse
253 drawImage(SkCanvas* canvas, SkImage* image, SkFilterQuality fq) argument
[all...]
/external/mesa3d/src/gbm/backends/dri/
H A Dgbm_dri.c54 dri_lookup_egl_image(__DRIscreen *screen, void *image, void *data) argument
61 return dri->lookup_image(screen, image, dri->lookup_user_data);
131 { __DRI_IMAGE, 1, offsetof(struct gbm_dri_device, image) },
306 if (bo->image != NULL)
321 if (bo->image != NULL) {
322 dri->image->destroyImage(bo->image);
365 __DRIimage *image; local
369 /* Required for query image WIDTH & HEIGHT */
370 if (dri->image
[all...]
H A Dgbm_driint.h50 __DRIimageExtension *image; member in struct:gbm_dri_device
57 __DRIimage *(*lookup_image)(__DRIscreen *screen, void *image, void *data);
74 __DRIimage *image; member in struct:gbm_dri_bo
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dimage.c27 #include "image.h"
239 struct vg_image *image = CALLOC_STRUCT(vg_image); local
246 vg_init_object(&image->base, ctx, VG_OBJECT_IMAGE);
248 image->format = format;
249 image->width = width;
250 image->height = height;
252 image->sampler.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
253 image->sampler.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
254 image->sampler.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
255 image
374 image_sub_data(struct vg_image *image, const void * data, VGint dataStride, VGImageFormat dataFormat, VGint x, VGint y, VGint width, VGint height) argument
435 image_get_sub_data(struct vg_image * image, void * data, VGint dataStride, VGImageFormat dataFormat, VGint sx, VGint sy, VGint width, VGint height) argument
478 struct vg_image *image = CALLOC_STRUCT(vg_image); local
[all...]
/external/e2fsprogs/lib/
H A DMakefile.bsd-lib13 all:: image
22 image: $(BSD_LIB)
/external/jmonkeyengine/engine/src/desktop/com/jme3/util/
H A DScreenshots.java3 import java.awt.image.BufferedImage;
4 import java.awt.image.DataBufferByte;
5 import java.awt.image.DataBufferInt;
6 import java.awt.image.WritableRaster;
/external/skia/debugger/QT/
H A DSkRasterWidget.cpp54 QImage image(reinterpret_cast<const uchar*>(pixels),
60 painter.drawImage(this->contentsRect(), image.rgbSwapped());
62 painter.drawImage(this->contentsRect(), image);

Completed in 2084 milliseconds

1234567891011>>