HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 1 - 25 of 1915) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/daemon/liblegacy/
opd_image.c 49 void opd_delete_image(struct opd_image * image)
51 verbprintf(vmisc, "Deleting image: name %s app_name %s, kernel %d, "
53 image->name, image->app_name, image->kernel,
54 image->tid, image->tgid, (int)image->ref_count);
56 if (image->ref_count <= 0) {
57 printf("image->ref_count < 0 for image: name %s app_name %s,
87 struct opd_image * image = local
133 struct opd_image * image; local
225 struct opd_image * image = 0; local
252 struct opd_image * image; local
    [all...]
opd_sample_files.h 34 * @param image the image pointer to work on
36 * close all samples files belonging to this image
38 void opd_close_image_samples_files(struct opd_image * image);
41 * opd_open_24_sample_file - open an image sample file
42 * @param image image to open file for
46 * Open image sample file for the image, counter
48 * image->kernel and image->name must have meaningfu
    [all...]
  /external/libpng/contrib/examples/
pngtopng.c 30 png_image image; local
32 /* Only the image structure version number needs to be set. */
33 memset(&image, 0, sizeof image);
34 image.version = PNG_IMAGE_VERSION;
36 if (png_image_begin_read_from_file(&image, argv[1]))
43 image.format = PNG_FORMAT_RGBA;
45 buffer = malloc(PNG_IMAGE_SIZE(image));
49 if (png_image_finish_read(&image, NULL/*background*/, buffer,
52 if (png_image_write_to_file(&image, argv[2]
    [all...]
  /external/chromium_org/chrome/browser/chromeos/profiles/
avatar_menu_chromeos.cc 11 #include "ui/gfx/image/image.h"
15 gfx::Image* image,
19 *image = ash::GetAvatarImageForContext(profile);
  /external/chromium_org/chrome/browser/ui/views/frame/
taskbar_decorator.cc 9 void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image) {
  /external/elfutils/0.153/libelf/
elf_memory.c 62 elf_memory (image, size)
63 char *image;
66 if (image == NULL)
72 return __libelf_read_mmaped_file (-1, image, 0, size, ELF_C_READ, NULL);
  /external/deqp/framework/delibs/deimage/
deImage.h 4 * drawElements Image Library
23 * \brief Image library.
46 void deImage_destroy (deImage* image);
48 int deImage_getWidth (const deImage* image);
49 int deImage_getHeight (const deImage* image);
50 void* deImage_getPixelPtr (const deImage* image);
52 deARGB deImage_getPixel (const deImage* image, int x, int y);
53 void deImage_setPixel (deImage* image, int x, int y, deARGB argb);
56 deBool deImage_saveTarga (const deImage* image, const char* fileName);
58 deImage* deImage_convertFormat (const deImage* image, deImageFormat format)
    [all...]
deImage.c 2 * drawElements Image Library
21 * \brief Image library.
36 static void* getPixelAddress (const deImage* image, int x, int y)
38 int offset = ((y*image->width) + x) * deImageFormat_getBytesPerPixel(image->format);
39 DE_ASSERT(deInBounds32(x, 0, image->width));
40 DE_ASSERT(deInBounds32(y, 0, image->height));
41 return (void*)((deUint8*)image->pixels + offset);
46 deImage* image = DE_NEW(deImage); local
48 if (!image)
    [all...]
  /external/opencv/cxcore/include/
cxcore.hpp 49 CvImage() : image(0), refcount(0) {}
52 image = cvCreateImage( size, depth, channels );
53 refcount = image ? new int(1) : 0;
56 CvImage( IplImage* img ) : image(img)
58 refcount = image ? new int(1) : 0;
61 CvImage( const CvImage& img ) : image(img.image), refcount(img.refcount)
66 CvImage( const char* filename, const char* imgname=0, int color=-1 ) : image(0), refcount(0)
69 CvImage( CvFileStorage* fs, const char* mapname, const char* imgname ) : image(0), refcount(0)
72 CvImage( CvFileStorage* fs, const char* seqname, int idx ) : image(0), refcount(0
205 IplImage* image; member in class:CvImage
    [all...]
  /external/chromium_org/components/user_manager/user_image/
user_image.cc 18 bool EncodeImageSkia(const gfx::ImageSkia& image,
21 "width", image.width(), "height", image.height());
22 if (image.isNull())
24 const SkBitmap& bitmap = *image.bitmap();
38 UserImage UserImage::CreateAndEncode(const gfx::ImageSkia& image) {
40 if (EncodeImageSkia(image, &raw_image)) {
41 UserImage result(image, raw_image);
45 return UserImage(image);
53 UserImage::UserImage(const gfx::ImageSkia& image)
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_button_cell.h 20 image:(NSImage*)image
bookmark_button_cell.h 46 image:(NSImage*)image
51 image:(NSImage*)image
58 image:(NSImage*)image
63 image:(NSImage*)image
72 // |-setBookmarkCellText:image:| is used to set the text and image o
    [all...]
  /external/chromium_org/ui/base/dragdrop/
drag_utils_aura.cc 10 #include "ui/gfx/image/image_skia.h"
16 void SetDragImageOnDataObject(const gfx::ImageSkia& image,
20 data_object->provider().SetDragImage(image, cursor_offset);
  /external/chromium_org/chrome/browser/ui/
chrome_style.cc 9 #include "ui/gfx/image/image.h"
16 const SkBitmap* image = rb.GetNativeImageNamed(IDR_CLOSE_DIALOG).ToSkBitmap(); local
17 DCHECK_EQ(image->width(), image->height());
18 return image->width();
  /external/chromium_org/content/public/browser/
favicon_status.cc 8 #include "ui/gfx/image/image_skia.h"
13 image = gfx::Image(*GetContentClient()->browser()->GetDefaultFavicon());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShapeValue.h 47 Image
60 static PassRefPtr<ShapeValue> createImageValue(PassRefPtr<StyleImage> image)
62 return adoptRef(new ShapeValue(image));
68 StyleImage* image() const { return m_image.get(); } function in class:blink::ShapeValue
71 if (!image())
73 if (image()->isImageResource() || image()->isImageResourceSet())
74 return image()->cachedImage() && image()->cachedImage()->hasImage();
75 return image()->isGeneratedImage()
    [all...]
CursorData.h 35 CursorData(PassRefPtr<StyleImage> image, const IntPoint& hotSpot)
36 : m_image(image)
51 StyleImage* image() const { return m_image.get(); } function in class:blink::CursorData
52 void setImage(PassRefPtr<StyleImage> image) { m_image = image; }
54 // Hot spot in the image in logical pixels.
  /external/chromium_org/third_party/skia/src/image/
SkImagePriv.cpp 18 SkImage* image = NULL; local
20 image = SkNewImageFromPixelRef(info, bm.pixelRef(), bm.rowBytes());
24 image = SkImage::NewRasterCopy(info, bm.getPixels(), bm.rowBytes());
28 return image;
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
mouse_cursor.h 26 // Takes ownership of |image|. |hotspot| must be within |image| boundaries.
27 MouseCursor(DesktopFrame* image, const DesktopVector& hotspot);
33 void set_image(DesktopFrame* image) { image_.reset(image); }
34 const DesktopFrame* image() const { return image_.get(); } function in class:webrtc::MouseCursor
  /external/chromium_org/ui/webui/resources/css/apps/
common.css 23 border-image: -webkit-image-set(
30 border-image: -webkit-image-set(
37 border-image: -webkit-image-set(
44 border-image: -webkit-image-set(
51 border-image: -webkit-image-set
    [all...]
  /external/chromium_org/ui/gfx/x/
x11_types.cc 76 XImage image; local
77 memset(&image, 0, sizeof(image));
79 image.width = data_width;
80 image.height = data_height;
81 image.format = ZPixmap;
82 image.byte_order = LSBFirst;
83 image.bitmap_unit = 8;
84 image.bitmap_bit_order = LSBFirst;
85 image.depth = depth
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_context_2d.cc 37 if (ctx->image) {
38 PSInterfaceCore()->ReleaseResource(ctx->image);
39 ctx->image = 0;
75 if (ctx->image) {
76 PSInterfaceCore()->ReleaseResource(ctx->image);
77 ctx->image = 0;
89 // Allocates (if needed) a new image context which will be swapped in when
91 // implemented the suggested image/graphic_2d use specified in the
96 // Check if we are already holding an image
97 if (ctx->image) return 1
105 PP_Resource image = local
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/css/
file_types.css 7 background-image: -webkit-image-set(
18 background-image: -webkit-image-set(
24 background-image: -webkit-image-set(
32 background-image: -webkit-image-set(
38 background-image: -webkit-image-set
    [all...]
  /external/oprofile/daemon/
opd_kernel.c 89 * Allocate and initialise a kernel image description
90 * @param name image name
97 struct kernel_image * image = xmalloc(sizeof(struct kernel_image)); local
99 image->name = xstrdup(name);
100 image->start = start;
101 image->end = end;
102 list_add(&image->list, &modules);
104 return image;
109 * Clear and free all kernel image information and reset
116 struct kernel_image * image; local
143 struct kernel_image * image; local
211 struct kernel_image * image = &vmlinux_image; local
    [all...]
  /external/chromium_org/ui/gfx/image/
image_skia_unittest.cc 5 #include "ui/gfx/image/image_skia.h"
12 #include "ui/gfx/image/image_skia_rep.h"
13 #include "ui/gfx/image/image_skia_source.h"
31 FixedSource(const ImageSkiaRep& image) : image_(image) {}
150 ImageSkiaRep image(Size(100, 200), 1.0f);
151 ImageSkia image_skia(new FixedSource(image), Size(100, 200));
170 // generate new image skia rep.
195 // generate new image skia rep.
203 // image when there are multiple representations for a scale factor
264 ImageSkia image; local
    [all...]

Completed in 782 milliseconds

1 2 3 4 5 6 7 8 91011>>