HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 226 - 250 of 2524) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11yuv.c 68 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/chromium_org/third_party/WebKit/Source/core/rendering/style/
ContentData.h 72 const StyleImage* image() const { return m_image.get(); } function in class:WebCore::ImageContentData
73 StyleImage* image() { return m_image.get(); } function in class:WebCore::ImageContentData
74 void setImage(PassRefPtr<StyleImage> image) { m_image = image; }
83 return *static_cast<const ImageContentData&>(data).image() == *image();
87 ImageContentData(PassRefPtr<StyleImage> image)
88 : m_image(image)
94 RefPtr<StyleImage> image = const_cast<StyleImage*>(this->image()); local
    [all...]
  /external/pixman/test/
stress-test.c 104 destroy (pixman_image_t *image, void *data)
106 if (image->type == BITS && image->bits.free_me != image->bits.bits)
110 if (image->bits.bits != (void *)0x01)
112 bits = image->bits.bits;
114 if (image->bits.rowstride < 0)
115 bits -= (- image->bits.rowstride * (image->bits.height - 1));
191 rand_x (pixman_image_t *image)
242 pixman_image_t *image; local
600 pixman_image_t *image = pixman_image_create_solid_fill (&color); local
    [all...]
alphamap.c 30 on_destroy (pixman_image_t *image, void *data)
32 uint32_t *bits = pixman_image_get_data (image);
42 pixman_image_t *image; local
46 image = pixman_image_create_bits (format, WIDTH, HEIGHT, bits, WIDTH * bpp);
48 if (image && bits)
49 pixman_image_set_destroy_function (image, on_destroy, NULL);
51 return image;
55 get_alpha (pixman_image_t *image, int x, int y, int orig_x, int orig_y)
60 if (image->common.alpha_map)
65 image = (pixman_image_t *)image->common.alpha_map
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
SurfaceHolderTarget.java 17 package androidx.media.filterpacks.image;
101 .addInputPort("image", Signature.PORT_REQUIRED, imageType)
126 FrameImage2D image = getConnectedInputPort("image").pullFrame().asFrameImage2D(); local
131 renderGL(image);
133 renderCanvas(image);
141 * @param image the image to render
143 private void renderGL(FrameImage2D image) {
148 Rect frameRect = new Rect(0, 0, image.getWidth(), image.getHeight())
    [all...]
  /external/chromium_org/media/tools/player_x11/
x11_video_renderer.cc 121 // If XRender is used, we'll upload the image to a pixmap. And then
126 XImage image; local
127 memset(&image, 0, sizeof(image));
128 image.width = coded_width;
129 image.height = coded_height;
130 image.depth = 32;
131 image.bits_per_pixel = 32;
132 image.format = ZPixmap;
133 image.byte_order = LSBFirst
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_tex.c 54 struct gl_texture_image *image)
57 struct intel_texture_image *intel_image = intel_texture_image(image);
58 struct gl_texture_object *texobj = image->TexObject;
62 assert(image->Border == 0);
68 ctx->Driver.FreeTextureImageBuffer(ctx, image);
74 slices = image->Depth;
77 slices = image->Height;
85 _swrast_init_texture_image(image);
88 intel_miptree_match_image(intel_texobj->mt, image)) {
91 __FUNCTION__, texobj, image->Level
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex.c 54 struct gl_texture_image *image)
57 struct intel_texture_image *intel_image = intel_texture_image(image);
58 struct gl_texture_object *texobj = image->TexObject;
62 assert(image->Border == 0);
68 ctx->Driver.FreeTextureImageBuffer(ctx, image);
74 slices = image->Depth;
77 slices = image->Height;
85 _swrast_init_texture_image(image);
88 intel_miptree_match_image(intel_texobj->mt, image)) {
91 __FUNCTION__, texobj, image->Level
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewWidget.java 75 final ImageView image = (ImageView) findViewById(R.id.widget_preview); local
76 mOriginalImagePadding.left = image.getPaddingLeft();
77 mOriginalImagePadding.top = image.getPaddingTop();
78 mOriginalImagePadding.right = image.getPaddingRight();
79 mOriginalImagePadding.bottom = image.getPaddingBottom();
95 final ImageView image = (ImageView) findViewById(R.id.widget_preview); local
96 if (image != null) {
97 FastBitmapDrawable preview = (FastBitmapDrawable) image.getDrawable();
102 image.setImageDrawable(null);
111 final ImageView image = (ImageView) findViewById(R.id.widget_preview) local
149 final PagedViewWidgetImageView image = local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewWidget.java 74 final ImageView image = (ImageView) findViewById(R.id.widget_preview); local
75 mOriginalImagePadding.left = image.getPaddingLeft();
76 mOriginalImagePadding.top = image.getPaddingTop();
77 mOriginalImagePadding.right = image.getPaddingRight();
78 mOriginalImagePadding.bottom = image.getPaddingBottom();
106 final ImageView image = (ImageView) findViewById(R.id.widget_preview); local
107 if (image != null) {
108 FastBitmapDrawable preview = (FastBitmapDrawable) image.getDrawable();
113 image.setImageDrawable(null);
125 final ImageView image = (ImageView) findViewById(R.id.widget_preview) local
163 final PagedViewWidgetImageView image = local
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
ImageUtils.cpp 34 ImageType image = in; local
38 r = (*image++);
39 g = (*image++);
40 b = (*image++);
41 a = (*image++);
79 ImageType image = in; local
83 r = (*image++);
84 g = (*image++);
85 b = (*image++);
120 ImageType image = in local
150 ImageType image = in; local
196 unsigned char *image = out; local
241 unsigned char *image = out; local
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
ImageUtils.cpp 34 ImageType image = in; local
38 r = (*image++);
39 g = (*image++);
40 b = (*image++);
41 a = (*image++);
79 ImageType image = in; local
83 r = (*image++);
84 g = (*image++);
85 b = (*image++);
120 ImageType image = in local
150 ImageType image = in; local
196 unsigned char *image = out; local
241 unsigned char *image = out; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
ImageUtils.cpp 34 ImageType image = in; local
38 r = (*image++);
39 g = (*image++);
40 b = (*image++);
41 a = (*image++);
79 ImageType image = in; local
83 r = (*image++);
84 g = (*image++);
85 b = (*image++);
120 ImageType image = in local
150 ImageType image = in; local
196 unsigned char *image = out; local
241 unsigned char *image = out; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageElement.cpp 75 RefPtr<HTMLImageElement> image = adoptRef(new HTMLImageElement(document)); local
77 image->setWidth(width);
79 image->setHeight(height);
80 return image.release();
168 RenderImage* image = new RenderImage(this);
169 image->setImageResource(RenderImageResource::create());
170 image->setImageDevicePixelRatio(m_imageDevicePixelRatio);
171 return image;
192 // If we have no image at all because we have no src attribute, set
193 // image height and width for the alt text instead
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 33 // This holds an image as 8bpp RGBA.
85 //printf("Image %s:\n", imageName);
128 NOISY(printf("Image %s: w=%d, h=%d, d=%d, colors=%d, inter=%d, comp=%d\n",
427 static uint32_t get_color(image_info* image, int hpatch, int vpatch)
431 hpatch, image->info9Patch.xDivs[0], image->info9Patch.xDivs[1],
432 image->width, &left, &right);
434 vpatch, image->info9Patch.yDivs[0], image->info9Patch.yDivs[1],
435 image->height, &top, &bottom)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_icon_image_unittest.cc 22 #include "ui/gfx/image/image_skia_source.h"
52 // Used to test behavior including images defined by an image skia source.
53 // |GetImageForScale| simply returns image representation from the image given
57 explicit MockImageSkiaSource(const gfx::ImageSkia& image)
58 : image_(image) {
70 // Helper class for synchronously loading extension image resource.
80 void OnImageLoaded(const gfx::Image& image) {
81 image_ = image;
    [all...]
app_icon_loader.h 26 // Called when the image for an app is loaded.
28 const gfx::ImageSkia& image) = 0;
34 // Fetches the image for the specified id. When done (which may be
38 // Clears the image for the specified id.
41 // Updates the image for the specified id. This is called to re-create
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/
Android.mk 12 $(LOCAL_PATH)/../../../mm-image-codec/qexif \
13 $(LOCAL_PATH)/../../../mm-image-codec/qomx_core
  /device/generic/goldfish/camera/
JpegCompressor.h 45 /* Compresses raw NV21 image into a JPEG.
46 * The compressed image will be saved in mStream member of this class. Use
47 * getCompressedSize method to obtain buffer size of the compressed image,
48 * and getCompressedImage to copy out the compressed image.
50 * image - Raw NV21 image.
51 * width, height - Image dimensions.
57 status_t compressRawImage(const void* image,
75 * entire image.
JpegStub.h 29 int JpegStub_compress(JpegStub* stub, const void* image,
  /external/chromium/chrome/browser/chromeos/
wm_overview_favicon.h 32 // image.
33 void SetFavicon(const SkBitmap& image);
wm_overview_snapshot.cc 57 void WmOverviewSnapshot::SetImage(const SkBitmap& image) {
58 CHECK(snapshot_view_) << "Init not called before setting image.";
59 snapshot_view_->SetImage(image);
61 // Reset the bounds to the size of the image.
62 SetBounds(gfx::Rect(image.width(), image.height()));
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
image_decoration.h 21 void SetImage(NSImage* image);
23 // Returns the part of |frame| the image is drawn in.
  /external/chromium/chrome/browser/ui/gtk/status_icons/
status_icon_gtk.cc 28 void StatusIconGtk::SetImage(const SkBitmap& image) {
29 if (image.isNull())
32 GdkPixbuf* pixbuf = gfx::GdkPixbufFromSkBitmap(&image);
37 void StatusIconGtk::SetPressedImage(const SkBitmap& image) {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/favicon/
FaviconHelper.java 16 * You can request a favicon image by web page URL. Note that an instance of this class should be
36 * @param image Favicon image.
37 * @param iconUrl Favicon image's icon url.
40 public void onFaviconAvailable(Bitmap image, String iconUrl);
87 * @param image The bitmap image to find the dominant color for.
90 public int getDominantColorForBitmap(Bitmap image) {
91 return nativeGetDominantColorForBitmap(mNativeFaviconHelper, image);
116 Bitmap image);
    [all...]

Completed in 563 milliseconds

1 2 3 4 5 6 7 8 91011>>