Searched refs:image (Results 201 - 225 of 522) sorted by relevance

1234567891011>>

/external/skia/tools/
H A Dskhello.cpp21 DEFINE_string2(outFile, o, "skhello", "The filename to write the image.");
39 SkAutoTUnref<SkImage> image(surface->newImageSnapshot());
40 SkAutoDataUnref data(image->encode());
/external/skia/tools/skpdiff/
H A DSkCLImageDiffer.cpp87 bool SkCLImageDiffer::makeImage2D(SkBitmap* bitmap, cl_mem* image) const {
110 *image = clCreateImage2D(fContext, CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR,
117 SkDebugf("Input image creation failed: %s\n", cl_error_to_string(imageErr));
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.h108 colortype: the desired color type for the raw output image. See explanation on PNG color types.
109 bitdepth: the desired bit depth for the raw output image. See explanation on PNG color types.
116 /*Same as lodepng_decode_memory, but always decodes to 32-bit RGBA raw image*/
120 /*Same as lodepng_decode_memory, but always decodes to 24-bit RGB raw image*/
133 /*Same as lodepng_decode_file, but always decodes to 32-bit RGBA raw image.*/
137 /*Same as lodepng_decode_file, but always decodes to 24-bit RGB raw image.*/
146 Converts raw pixel data into a PNG image in memory. The colortype and bitdepth
147 of the output PNG image cannot be chosen, they are automatically determined
150 out: Output parameter. Pointer to buffer that will contain the PNG image data.
153 image
[all...]
/external/opencv/cxcore/src/
H A Dcxarray.cpp61 // Makes the library use native IPL image allocators
1178 // Retrieves essential information about image ROI or CvMat data
2796 CV_ERROR( CV_StsNullPtr, "The image has NULL data pointer" );
2828 "The image is interleaved and has over CV_CN_MAX channels" );
3342 cvInitImageHeader( IplImage * image, CvSize size, int depth, argument
3353 if( !image )
3356 memset( image, 0, sizeof( *image ));
3357 image->nSize = sizeof( *image );
3458 cvSetImageROI( IplImage* image, CvRect rect ) argument
3559 cvSetImageCOI( IplImage* image, int coi ) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dtexobj.c476 /* Always need the base level image */
497 * mipmap image sizes and GL_TEXTURE_MAX_LEVEL state).
553 * Note: we know that the image's width==height (we enforce that
588 /* Get the base image's dimensions */
595 /* Compute the expected size of image at level[i] */
802 /* initialize level[0] texture image */
1031 * Check if the given texture object is bound to any texture image units and
1427 struct gl_texture_image *image; local
1438 * <dim> is the size of the dimension of the texture image, and <b> is
1439 * the size of the border of that texture image, otherwis
[all...]
/external/ceres-solver/examples/
H A Dpgm_image.h52 // Create an empty image
54 // Load an image from file
56 // Sets an image to a constant
71 // Adds an image to another
72 void operator+=(const PGMImage& image);
73 // Adds a constant to an image
75 // Multiplies an image by a constant
82 // Accessing the image data directly
159 // Adds an image to another
161 void PGMImage<Real>::operator+= (const PGMImage<Real>& image) {
[all...]
/external/drm_hwcomposer/
H A Dglworker.h60 CachedFramebuffer(const sp<GraphicBuffer> &gb, AutoEGLDisplayImage &&image,
/external/e2fsprogs/lib/
H A DMakefile.elf-lib14 all:: image
23 image: $(ELF_LIB)
/external/eigen/test/
H A Dlu.cpp53 // The image of the zero matrix should consist of a single (zero) column vector
54 VERIFY((MatrixType::Zero(rows,cols).fullPivLu().image(MatrixType::Zero(rows,cols)).cols() == 1));
77 ImageMatrixType m1image = lu.image(m1);
120 VERIFY(lu.image(m1).fullPivLu().isInvertible());
152 VERIFY_RAISES_ASSERT(lu.image(tmp))
/external/google-breakpad/src/client/mac/handler/
H A Ddynamic_images.h102 bool FindTextSection(DynamicImage& image);
105 uint32_t GetFileTypeFromHeader(DynamicImage& image);
108 // Represents a single dynamically loaded mach-o image
140 // Actual address where the image was loaded
143 // Address where the image should be loaded
149 // Size of the image
152 // Task owning this loaded image
179 friend bool FindTextSection(DynamicImage& image);
181 friend uint32_t GetFileTypeFromHeader(DynamicImage& image);
188 uint64_t load_address_; // base address image i
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/app/
H A DTestChangeAppIcon.java37 import java.awt.image.BufferedImage;
/external/libunwind/src/
H A Dos-qnx.c51 cur_map->ei.image = NULL;
74 will not work here. The only type of image lookup which works
76 time that this function is required to look up a remote image is for
80 platform support for remote image lookup, this function has just
86 /* Return an error if an attempt is made to perform remote image lookup */
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dmask.h57 void mask_using_image(struct vg_image *image,
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_tex.h77 struct intel_texture_image *image);
/external/opencv/cvaux/src/
H A Dcamshift.cpp82 CvCamShiftTracker::color_transform( const IplImage* image )
84 CvSize size = cvGetSize(image);
91 assert( image->nChannels == 3 && m_hist != 0 );
111 cvCvtColor( image, m_temp, CV_BGR2HSV );
/external/skia/platform_tools/android/examples/hello_skia_app/src/com/example/
H A DHelloSkiaActivity.java73 private native void drawIntoBitmap(Bitmap image, long elapsedTime); argument
/external/skia/src/gpu/
H A DGrFontScaler.cpp206 const void* image = fStrike->findImage(glyph); local
207 if (NULL == image) {
214 // make the distance field from the image
216 (unsigned char*)image,
220 // make the distance field from the image
222 (unsigned char*)image,
/external/skia/src/utils/
H A DSkPaintFilterCanvas.cpp82 void SkPaintFilterCanvas::onDrawImage(const SkImage* image, SkScalar left, SkScalar top, argument
85 this->INHERITED::onDrawImage(image, left, top, apf.paint());
88 void SkPaintFilterCanvas::onDrawImageRect(const SkImage* image, const SkRect* src, argument
91 this->INHERITED::onDrawImageRect(image, src, dst, apf.paint());
/external/harfbuzz_ng/util/
H A Dansi-print.cc165 void set (const image_t &image)
167 assert (image.width == width);
168 assert (image.height == height);
172 color_t c = image (x, y);
203 int d = diff.dot (image (x, y).diff (bgc));
384 image_t image (width, height, data, stride);
393 image.copy_sub_image (cell, col * CELL_W, row * CELL_H, CELL_W, CELL_H);
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_crtc.c208 crtc_load_cursor_argb_ga3d(xf86CrtcPtr crtc, CARD32 * image) argument
250 64, 64, (void*)image, 64 * 4, 0, 0);
267 crtc_load_cursor_argb_kms(xf86CrtcPtr crtc, CARD32 * image) argument
297 memcpy(ptr, image, 64*64*4);
312 crtc_load_cursor_argb(xf86CrtcPtr crtc, CARD32 * image) argument
330 crtc_load_cursor_argb_ga3d(crtc, image);
333 crtc_load_cursor_argb_kms(crtc, image);
/external/deqp/modules/egl/
H A DteglImageTests.cpp21 * \brief EGL image tests.
209 const EGLImageKHR image = egl.createImageKHR(dpy, context, source, 0, DE_NULL); local
213 checkCallReturn(m_eglTestCtx, call.str().c_str(), image, EGL_NO_IMAGE_KHR, expectError);
358 const EGLImageKHR image = m_source->createImage(egl, dpy, eglContext, clientBuffer->get()); local
360 if (image == EGL_NO_IMAGE_KHR)
368 // Destroy image
369 CHECK_EXT_CALL_RET(egl.destroyImageKHR(context.getEglDisplay(), image), (EGLBoolean)EGL_TRUE, EGL_SUCCESS);
434 // Create EGL image
436 EGLImageKHR image = CHECK_EXT_CALL_ERR(egl.createImageKHR(context.getEglDisplay(), context.getEglContext(), EGL_GL_TEXTURE_2D_KHR, (EGLClientBuffer)(deUintptr)srcTex, attribs), EGL_SUCCESS); local
437 if (image
[all...]
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
H A Dglx_usefont.c130 XImage *image; local
145 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
146 if (image) {
150 if (XGetPixel(image, x, y))
153 XDestroyImage(image);
/external/mesa3d/src/glx/
H A Dxfont.c136 XImage *image; local
151 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
152 if (image) {
156 if (XGetPixel(image, x, y))
159 XDestroyImage(image);
/external/mesa3d/src/mesa/drivers/x11/
H A Dxfonts.c137 XImage *image; local
152 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
153 if (image) {
157 if (XGetPixel(image, x, y))
160 XDestroyImage(image);
/external/deqp/executor/
H A DxeTestResultParser.cpp227 return (ri::Image::Format)getEnumValue("image format", s_imageFormatMap, DE_LENGTH_OF_ARRAY(s_imageFormatMap), imageFormat);
232 return (ri::Image::Compression)getEnumValue("image compression", s_compressionMap, DE_LENGTH_OF_ARRAY(s_compressionMap), compression);
526 ri::Image* image = curList->allocItem<ri::Image>(); local
527 image->name = getAttribute("Name");
528 image->description = getAttribute("Description");
529 image->width = toInt(getAttribute("Width"));
530 image->height = toInt(getAttribute("Height"));
531 image->format = getImageFormat(getAttribute("Format"));
532 image->compression = getImageCompression(getAttribute("CompressionMode"));
533 item = image;
794 ri::Image* image = static_cast<ri::Image*>(curItem); local
[all...]

Completed in 1240 milliseconds

1234567891011>>