Searched refs:bitmap (Results 1 - 25 of 236) sorted by relevance

12345678910

/macosx-10.10/libauto-186/tests/
H A Dtest_bitmaps.cpp30 Bitmap bitmap(64, bits);
31 bitmap.clear();
33 assert(bitmap.bits_are_clear(0, bitmap.size_in_bits()));
35 bitmap.set_bits(0, 16);
36 bitmap.set_bits(48, 16);
38 assert(!bitmap.bits_are_clear(0, 16));
39 assert(bitmap.bits_are_clear(16, 32));
40 assert(!bitmap.bits_are_clear(48, 16));
/macosx-10.10/ruby-106/ruby/lib/rdoc/markup/
H A Dattributes.rb29 bitmap = @name_to_bitmap.assoc name
31 unless bitmap then
32 bitmap = @next_bitmap
34 @name_to_bitmap << [name, bitmap]
36 bitmap = bitmap.last
39 bitmap
43 # Returns a string representation of +bitmap+
45 def as_string bitmap
46 return 'none' if bitmap
[all...]
/macosx-10.10/dtrace-147/sys/
H A Dbitmap.h34 #pragma ident "@(#)bitmap.h 1.29 06/09/11 SMI"
58 #include <asm/bitmap.h>
63 * A bitmap is a vector of 1 or more ulong_t's.
87 * bitmap is a ulong_t *, bitindex an index_t
96 #define BT_WIM(bitmap, bitindex) \
97 ((bitmap)[(bitindex) >> BT_ULSHIFT])
105 #define BT_WIM32(bitmap, bitindex) \
106 ((bitmap)[(bitindex) >> BT_ULSHIFT32])
121 #define BT_TEST(bitmap, bitindex) \
122 ((BT_WIM((bitmap), (bitinde
[all...]
/macosx-10.10/IOGraphics-485/tools/
H A Dhibparse.c52 hibernate_bitmap_t * bitmap = &list->bank_bitmap[0]; local
56 if ((page >= bitmap->first_page) && (page <= bitmap->last_page))
58 bitmap = (hibernate_bitmap_t *) &bitmap->bitmap[bitmap->bitmapwords];
61 bitmap = NULL;
63 return (bitmap);
70 hibernate_bitmap_t * bitmap local
92 hibernate_bitmap_t * bitmap; local
111 hibernate_bitmap_t * bitmap; local
124 hibernate_page_bitmap_count(hibernate_bitmap_t * bitmap, uint32_t set, uint32_t page) argument
167 hibernate_bitmap_t * bitmap; local
[all...]
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DWebImage.cpp42 PassRefPtr<WebImage> WebImage::create(PassRefPtr<ShareableBitmap> bitmap) argument
44 return adoptRef(new WebImage(bitmap));
47 WebImage::WebImage(PassRefPtr<ShareableBitmap> bitmap) argument
48 : m_bitmap(bitmap)
H A DContextMenuContextData.cpp68 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::createShareable(IntSize(image->size()), ShareableBitmap::SupportsAlpha);
69 bitmap->createGraphicsContext()->drawImage(image, ColorSpaceDeviceRGB, IntPoint());
70 bitmap->createHandle(m_controlledImageHandle);
88 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::create(other.m_controlledImageHandle); local
89 bitmap->createHandle(m_controlledImageHandle);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DBackingStore.cpp52 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::create(updateInfo.bitmapHandle); local
53 if (!bitmap)
59 ASSERT(bitmap->size() == updateSize);
62 incorporateUpdate(bitmap.get(), updateInfo);
/macosx-10.10/WebKit2-7600.1.25/Shared/API/c/cg/
H A DWKImageCG.cpp41 if (!webImage->bitmap())
44 return webImage->bitmap()->makeCGImageCopy().leakRef();
54 if (!webImage->bitmap())
57 auto graphicsContext = webImage->bitmap()->createGraphicsContext();
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dguitest_graphics.py16 a bitmap image
20 bitmap = NSBitmapImageRep.imageRepWithData_(data)
21 self.bitmap = bitmap
22 self.data = bitmap.bitmapData()
23 self.rowbytes = bitmap.bytesPerRow()
24 self.pixbytes = bitmap.bitsPerPixel() / 8
25 self.rowCount = bitmap.pixelsHigh()
27 if bitmap.isPlanar():
29 if (bitmap
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dguitest_graphics.py16 a bitmap image
20 bitmap = NSBitmapImageRep.imageRepWithData_(data)
21 self.bitmap = bitmap
22 self.data = bitmap.bitmapData()
23 self.rowbytes = bitmap.bytesPerRow()
24 self.pixbytes = bitmap.bitsPerPixel() // 8
25 self.rowCount = bitmap.pixelsHigh()
27 if bitmap.isPlanar():
29 if (bitmap
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/gtk/
H A DWebDragClientGtk.cpp52 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::createShareable(imageSize, ShareableBitmap::SupportsAlpha); local
53 auto graphicsContext = bitmap->createGraphicsContext();
56 return bitmap.release();
61 RefPtr<ShareableBitmap> bitmap = convertCairoSurfaceToShareableBitmap(dragImage); local
64 // If we have a bitmap, but cannot create a handle to it, we fail early.
65 if (bitmap && !bitmap->createHandle(handle))
/macosx-10.10/tcl-105/tk/tk/win/
H A DtkWinPixmap.c29 * Allocates a new Win32 bitmap.
50 newTwdPtr->bitmap.depth = depth;
54 newTwdPtr->bitmap.colormap = DefaultColormap(display,
57 newTwdPtr->bitmap.colormap = twdPtr->window.winPtr->atts.colormap;
60 newTwdPtr->bitmap.colormap = twdPtr->bitmap.colormap;
68 newTwdPtr->bitmap.handle =
77 if (newTwdPtr->bitmap.handle == NULL) {
92 newTwdPtr->bitmap.handle = CreateDIBSection(dc, &bitmapInfo,
102 if (newTwdPtr->bitmap
[all...]
/macosx-10.10/tcl-105/tk84/tk/win/
H A DtkWinPixmap.c30 * Allocates a new Win32 bitmap.
51 newTwdPtr->bitmap.depth = depth;
55 newTwdPtr->bitmap.colormap = DefaultColormap(display,
58 newTwdPtr->bitmap.colormap = twdPtr->window.winPtr->atts.colormap;
61 newTwdPtr->bitmap.colormap = twdPtr->bitmap.colormap;
69 newTwdPtr->bitmap.handle =
78 if (newTwdPtr->bitmap.handle == NULL) {
93 newTwdPtr->bitmap.handle = CreateDIBSection(dc, &bitmapInfo,
103 if (newTwdPtr->bitmap
[all...]
/macosx-10.10/vim-55/src/
H A Dxpm_w32.c56 *hImage = img->bitmap;
57 *hShape = shp->bitmap;
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dguitest_graphics.py16 a bitmap image
20 bitmap = NSBitmapImageRep.imageRepWithData_(data)
21 self.bitmap = bitmap
22 self.data = bitmap.bitmapData()
23 self.rowbytes = bitmap.bytesPerRow()
24 self.pixbytes = bitmap.bitsPerPixel() // 8
25 self.rowCount = bitmap.pixelsHigh()
27 if bitmap.isPlanar():
29 if (bitmap
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Ddialog2.rb16 def bitmap method in class:TkDialog_Demo2
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Ddialog1.rb17 def bitmap method in class:TkDialog_Demo1
H A Ddialog2.rb17 def bitmap method in class:TkDialog_Demo2
/macosx-10.10/xnu-2782.1.97/osfmk/i386/
H A Diopb.h67 * IO permission bitmap.
80 * An IO permission map is a task segment with an IO permission bitmap.
85 isa_iopb bitmap; /* bitmap of mapped IO ports */ member in struct:iopb_tss
86 unsigned int barrier; /* bitmap barrier for CPU slop */
H A Dhibernate_i386.c61 hibernate_bitmap_t * bitmap; local
148 // size the hibernation bitmap
166 // convert to hibernation bitmap.
168 bitmap = &list->bank_bitmap[0];
171 bitmap->first_page = dram_ranges[bank].first_page;
172 bitmap->last_page = dram_ranges[bank].last_page;
173 bitmap->bitmapwords = (bitmap->last_page + 1
174 - bitmap->first_page + 31) >> 5;
176 bank, bitmap
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/treectrl/
H A Dbitmaps.rb28 t.element_create('elemBmp', :bitmap,
31 :bitmap=>['question' ['selected']])
54 t.item_element_configure(i, 0, 'elemBmp', :bitmap=>name)
63 t.item_element_configure(i, 0, 'elemBmp', :bitmap=>name,
67 t.item_element_configure(i, 0, 'elemBmp', :bitmap=>name,
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/mac/
H A DWebDragClientMac.mm59 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::createShareable(size, ShareableBitmap::SupportsAlpha);
60 if (!bitmap)
63 auto graphicsContext = bitmap->createGraphicsContext();
68 [image drawInRect:NSMakeRect(0, 0, bitmap->size().width(), bitmap->size().height()) fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1 respectFlipped:YES hints:nil];
72 return bitmap.release();
78 RefPtr<ShareableBitmap> bitmap = convertImageToBitmap(image.get(), bitmapSize);
80 if (!bitmap || !bitmap->createHandle(handle))
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DDIBPixelData.cpp34 DIBPixelData::DIBPixelData(HBITMAP bitmap) argument
36 initialize(bitmap);
39 void DIBPixelData::initialize(HBITMAP bitmap) argument
42 GetObject(bitmap, sizeof(bmpInfo), &bmpInfo);
89 HBITMAP bitmap = static_cast<HBITMAP>(GetCurrentObject(hdc, OBJ_BITMAP)); local
90 DIBPixelData pixelData(bitmap);
/macosx-10.10/WebKit2-7600.1.25/Shared/cg/
H A DShareableBitmapCG.cpp100 ShareableBitmap* bitmap = static_cast<ShareableBitmap*>(typelessBitmap); local
101 ASSERT_UNUSED(typelessData, bitmap->data() == typelessData);
102 bitmap->deref(); // Balanced by ref in createGraphicsContext.
107 ShareableBitmap* bitmap = static_cast<ShareableBitmap*>(typelessBitmap); local
108 ASSERT_UNUSED(typelessData, bitmap->data() == typelessData);
109 bitmap->deref(); // Balanced by ref in createCGImage.
/macosx-10.10/WebKit2-7600.1.25/Shared/API/c/cairo/
H A DWKImageCairo.cpp42 return toImpl(imageRef)->bitmap()->createCairoSurface().leakRef();
49 auto graphicsContext = webImage->bitmap()->createGraphicsContext();

Completed in 616 milliseconds

12345678910