Searched refs:image (Results 151 - 175 of 1808) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/
H A Dva_image.c74 vlVaCreateImage(VADriverContextP ctx, VAImageFormat *format, int width, int height, VAImage *image) argument
90 VA_INFO("Creating BGRA image of size %dx%d\n",width,height);
93 VA_INFO("Creating RGBA image of size %dx%d\n",width,height);
96 VA_ERROR("Couldn't create image of type %0x08\n",format->fourcc);
106 vlVaDeriveImage(VADriverContextP ctx, VASurfaceID surface, VAImage *image) argument
115 vlVaDestroyImage(VADriverContextP ctx, VAImageID image) argument
124 vlVaSetImagePalette(VADriverContextP ctx, VAImageID image, unsigned char *palette) argument
134 unsigned int width, unsigned int height, VAImageID image)
143 vlVaPutImage(VADriverContextP ctx, VASurfaceID surface, VAImageID image, argument
133 vlVaGetImage(VADriverContextP ctx, VASurfaceID surface, int x, int y, unsigned int width, unsigned int height, VAImageID image) argument
/external/chromium_org/ui/gfx/image/
H A Dimage_util.cc5 #include "ui/gfx/image/image_util.h"
10 #include "ui/gfx/image/image.h"
11 #include "ui/gfx/image/image_skia.h"
28 bool JPEG1xEncodedDataFromImage(const Image& image, int quality, argument
31 image.AsImageSkia().GetRepresentation(1.0f);
50 bool VisibleMargins(const ImageSkia& image, int* leading, int* trailing) { argument
52 *trailing = std::max(1, image.width()) - 1;
53 if (!image.HasRepresentation(1.0))
56 const ImageSkiaRep& rep = image
[all...]
H A Dimage_skia_util_mac.h28 GFX_EXPORT gfx::ImageSkia ImageSkiaFromNSImage(NSImage* image);
31 GFX_EXPORT gfx::ImageSkia ImageSkiaFromResizedNSImage(NSImage* image,
/external/mesa3d/src/gallium/state_trackers/va/
H A Dva_image.c74 vlVaCreateImage(VADriverContextP ctx, VAImageFormat *format, int width, int height, VAImage *image) argument
90 VA_INFO("Creating BGRA image of size %dx%d\n",width,height);
93 VA_INFO("Creating RGBA image of size %dx%d\n",width,height);
96 VA_ERROR("Couldn't create image of type %0x08\n",format->fourcc);
106 vlVaDeriveImage(VADriverContextP ctx, VASurfaceID surface, VAImage *image) argument
115 vlVaDestroyImage(VADriverContextP ctx, VAImageID image) argument
124 vlVaSetImagePalette(VADriverContextP ctx, VAImageID image, unsigned char *palette) argument
134 unsigned int width, unsigned int height, VAImageID image)
143 vlVaPutImage(VADriverContextP ctx, VASurfaceID surface, VAImageID image, argument
133 vlVaGetImage(VADriverContextP ctx, VASurfaceID surface, int x, int y, unsigned int width, unsigned int height, VAImageID image) argument
/external/pixman/test/
H A Dregion-test.c27 pixman_image_t *image, *fill; local
101 /* Clip to image size */
107 image = pixman_image_create_bits (PIXMAN_a1, image_size, image_size, NULL, 0);
108 pixman_image_set_clip_region32 (image, &r1);
110 fill, NULL, image,
113 pixman_region32_init_from_image (&r2, image);
115 pixman_image_unref (image);
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dnew_guest_tab_theme.css9 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1);
H A Dnew_incognito_tab_theme.css9 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1);
/external/chromium_org/chrome/browser/resources/options/
H A Dsupervised_user_learn_more.css23 /* Omit the image on very small screens. */
24 #supervised-user-learn-more-image {
30 #supervised-user-learn-more-image {
32 background-image: -webkit-image-set(
/external/chromium_org/chrome/browser/resources/print_preview/settings/
H A Dmore_settings.css29 background-image: -webkit-image-set(
35 background-image: -webkit-image-set(
/external/chromium_org/chrome/browser/status_icons/
H A Dstatus_tray.cc15 const gfx::ImageSkia& image,
17 StatusIcon* icon = CreatePlatformStatusIcon(type, image, tool_tip);
14 CreateStatusIcon(StatusIconType type, const gfx::ImageSkia& image, const base::string16& tool_tip) argument
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dpage_action_with_badge_view.cc31 const gfx::ImageSkia& image = image_view()->GetImage(); local
32 int y = (image.height() + 1) % 2; // Even numbers: 1px padding. Odd: 0px.
/external/chromium_org/chrome/installer/test/
H A Dpe_image_resources.cc26 // Recursive function for enumerating entries in an image's resource segment.
29 const base::win::PEImage& image, const uint8* tree_base, DWORD tree_size,
79 success = EnumResourcesWorker(image, tree_base, tree_size,
87 image.RVAToAddr(data_entry->OffsetToData)) + data_entry->Size <=
92 reinterpret_cast<uint8*>(image.RVAToAddr(data_entry->OffsetToData)),
110 bool EnumResources(const base::win::PEImage& image, EnumResource_Fn callback, argument
113 image.GetImageDirectoryEntrySize(IMAGE_DIRECTORY_ENTRY_RESOURCE);
117 image,
119 image.GetImageDirectoryEntryAddr(IMAGE_DIRECTORY_ENTRY_RESOURCE)),
28 EnumResourcesWorker( const base::win::PEImage& image, const uint8* tree_base, DWORD tree_size, DWORD directory_offset, upgrade_test::EntryPath* path, upgrade_test::EnumResource_Fn callback, uintptr_t context) argument
/external/chromium_org/chrome/test/ispy/server/
H A Dimage_handler.py5 """Request handler to display an image from Google Cloud Storage."""
25 file_path: A path to an image resource in Google Cloud Storage.
33 image = bucket.DownloadFile(file_path)
37 self.response.headers['Content-Type'] = 'image/png'
38 self.response.out.write(image)
/external/chromium_org/ppapi/shared_impl/
H A Dcompositor_layer_data.cc31 Copy(&image, other.image);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasPattern.cpp54 CanvasPattern::CanvasPattern(PassRefPtr<Image> image, Pattern::RepeatMode repeat, bool originClean) argument
55 : m_pattern(Pattern::createBitmapPattern(image, repeat))
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
H A DSVGImageCache.h42 static PassOwnPtr<SVGImageCache> create(SVGImage* image) argument
44 return adoptPtr(new SVGImageCache(image));
/external/libpng/scripts/
H A Ddef.dfn20 PNG_DFN "OS2 DESCRIPTION "PNG image compression library""
/external/opencv/cvaux/src/
H A Dcvbgfg_codebook.cpp93 CvMat stub, *image = cvGetMat( _image, &stub ); local
100 CV_ASSERT( model && CV_MAT_TYPE(image->type) == CV_8UC3 &&
101 (!mask || CV_IS_MASK_ARR(mask) && CV_ARE_SIZES_EQ(image, mask)) );
105 roi.width = image->cols;
106 roi.height = image->rows;
109 CV_ASSERT( (unsigned)roi.x < (unsigned)image->cols &&
110 (unsigned)roi.y < (unsigned)image->rows &&
112 roi.x + roi.width <= image->cols &&
113 roi.y + roi.height <= image->rows );
115 if( image
235 CvMat stub, *image = cvGetMat( _image, &stub ); local
[all...]
/external/oprofile/daemon/liblegacy/
H A Dopd_mapping.h26 /** next mapping for this image */
28 /** owning image */
29 struct opd_image * image; member in struct:opd_map
63 * @param image mapped image pointer
71 void opd_add_mapping(struct opd_proc * proc, struct opd_image * image,
103 * for the relevant binary image.
/external/pixman/demos/
H A Dgtk-utils.h7 void show_image (pixman_image_t *image);
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsmouse.c54 struct ps2_image image; local
69 /* Remove the cursor image from the DMA area */
109 image = screen_image;
110 image.y += screen->offset / screen->pitch + mouse_y1;
111 image.h = mouse_y2 - mouse_y1;
112 image.ptr = mapped_mem +
113 (image.y - screen_image.y) * screen->pitch;
114 ioctl(console_fd, PS2IOC_LOADIMAGE, &image);
116 /* Need to scale offscreen image to TV output */
117 if ( image
[all...]
/external/opencv/otherlibs/highgui/
H A Dloadsave.cpp346 // global image I/O filters
391 IplImage* image = 0; local
451 CV_CALL( image = cvCreateImage( size, type, cn ));
452 matrix = cvGetMat( image, &hdr );
460 cvReleaseImage( &image );
473 cvReleaseImage( &image );
476 return load_as_matrix ? (void*)matrix : (void*)image;
504 CvMat stub, *image; local
510 CV_CALL( image = cvGetMat( arr, &stub ));
515 channels = CV_MAT_CN( image
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11yuv.c68 SDL_NAME(XvImage) *image;
328 hwdata->image = SDL_NAME(XvShmCreateImage)(GFX_Display, xv_port, format,
331 if ( hwdata->image != NULL && hwdata->image->pitches[0] != (width*bpp) ) {
333 width = hwdata->image->pitches[0] / bpp;
334 XFree(hwdata->image);
335 hwdata->image = SDL_NAME(XvShmCreateImage)(GFX_Display, xv_port, format,
339 hwdata->yuv_use_mitshm = (hwdata->image != NULL);
341 yuvshm->shmid = shmget(IPC_PRIVATE, hwdata->image->data_size,
362 XFree(hwdata->image);
[all...]
/external/zopfli/src/zopflipng/
H A Dzopflipng_lib.cc87 // Counts amount of colors in the image, up to 257. If transparent_counts_as_one
91 const unsigned char* image, unsigned w, unsigned h,
95 unsigned index = ColorIndex(&image[i * 4]);
96 if (transparent_counts_as_one && image[i * 4 + 3] == 0) index = 0;
103 void LossyOptimizeTransparent(lodepng::State* inputstate, unsigned char* image, argument
109 if (image[i * 4 + 3] > 0 && image[i * 4 + 3] < 255) {
115 CountColors(&count, image, w, h, true);
124 if (image[i * 4 + 3] == 0) {
127 // existing in the input image palett
90 CountColors(std::set<unsigned>* unique, const unsigned char* image, unsigned w, unsigned h, bool transparent_counts_as_one) argument
176 TryOptimize( const std::vector<unsigned char>& image, unsigned w, unsigned h, const lodepng::State& inputstate, bool bit16, const std::vector<unsigned char>& origfile, ZopfliPNGFilterStrategy filterstrategy, bool use_zopfli, int windowsize, const ZopfliPNGOptions* png_options, std::vector<unsigned char>* out) argument
277 AutoChooseFilterStrategy(const std::vector<unsigned char>& image, unsigned w, unsigned h, const lodepng::State& inputstate, bool bit16, const std::vector<unsigned char>& origfile, int numstrategies, ZopfliPNGFilterStrategy* strategies, bool* enable) argument
361 std::vector<unsigned char> image; local
[all...]
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A Dtga_utils.cpp49 bool LoadTGAImageFromFile(const std::string &path, TGAImage *image) argument
72 image->width = header.width;
73 image->height = header.height;
79 image->data.reserve(header.width * header.height);
94 image->data.push_back(pixel);
98 std::cout << "loaded image " << path << ".\n";
103 GLuint LoadTextureFromTGAImage(const TGAImage &image) argument
105 if (image.width > 0 && image.height > 0)
113 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, static_cast<GLsizei>(image
[all...]

Completed in 1098 milliseconds

1234567891011>>