Searched refs:bitmapSize (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A D_WKThumbnailView.mm117 IntSize bitmapSize = snapshotRect.size();
118 bitmapSize.scale(_scale * _webPageProxy->deviceScaleFactor());
120 _webPageProxy->takeSnapshot(snapshotRect, bitmapSize, options, [thumbnailView](const ShareableBitmap::Handle& imageHandle, CallbackBase::Error) {
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/DOM/
H A DInjectedBundleNodeHandle.cpp130 IntSize bitmapSize = rect.size(); local
132 bitmapSize.scale(scaleFactor);
134 RefPtr<WebImage> snapshot = WebImage::create(bitmapSize, snapshotOptionsToImageOptions(options));
139 graphicsContext->clearRect(IntRect(IntPoint(), bitmapSize));
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/mac/
H A DWebDragClientMac.mm77 IntSize bitmapSize([image size]);
78 RefPtr<ShareableBitmap> bitmap = convertImageToBitmap(image.get(), bitmapSize);
/macosx-10.10/IOGraphics-485/tools/
H A Dhibparse.c236 lastMapPage = atop_64(mapPhys + gIOHibernateCurrentHeader->bitmapSize);
274 imageReadPhys = (mapPhys + gIOHibernateCurrentHeader->bitmapSize);
307 if (!srcPhys) srcPhys = (mapPhys + gIOHibernateCurrentHeader->bitmapSize);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/CoordinatedGraphics/
H A DCoordinatedDrawingArea.cpp559 IntSize bitmapSize = bounds.size(); local
561 bitmapSize.scale(deviceScaleFactor);
562 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::createShareable(bitmapSize, ShareableBitmap::SupportsAlpha);
/macosx-10.10/AppleRAID-4.0.6/
H A DAppleLVMGroup.cpp1073 UInt32 bitmapSize = member->getSecondarySize() / kAppleLVMVolumeOnDiskMinSize / 32;
1074 UInt32 * bitmap = IONew(UInt32, bitmapSize + 1);
1076 bzero(bitmap, bitmapSize * sizeof(UInt32));
1077 bitmap[bitmapSize] = 0x55555555; // the end (backwards)
1079 IOLog1("AppleLVMGroup::findFreeLVEOffset(): bitmap %p, size %u\n", bitmap, (uint32_t)bitmapSize * 32);
1101 assert(bitIndex < bitmapSize * 32);
1102 if (bitIndex >= bitmapSize * 32) goto error;
1120 UInt32 lastBit = bitmapSize * 32;
1155 if (bitmap) IODelete(bitmap, UInt32, bitmapSize + 1);
H A DAppleRAIDUserLib.c2899 UInt64 bitmapSize = calculateBitMapSize(lvSize, 0, NULL); local
2910 CFMutableDictionaryRef bitmap = AppleLVMCreateVolume(lvgUUID, CFSTR(kAppleLVMVolumeTypeBitMap), bitmapSize, CFSTR(kAppleLVMVolumeLocationFast));
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/
H A DDrawingAreaImpl.cpp632 IntSize bitmapSize = bounds.size(); local
634 bitmapSize.scale(deviceScaleFactor);
635 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::createShareable(bitmapSize, ShareableBitmap::SupportsAlpha);
H A DWebPage.cpp1615 void WebPage::takeSnapshot(IntRect snapshotRect, IntSize bitmapSize, uint32_t options, uint64_t callbackID) argument
1620 RefPtr<WebImage> image = snapshotAtSize(snapshotRect, bitmapSize, snapshotOptions);
1632 IntSize bitmapSize = snapshotRect.size(); local
1636 bitmapSize.scale(scaleFactor);
1638 return snapshotAtSize(rect, bitmapSize, options);
1641 PassRefPtr<WebImage> WebPage::snapshotAtSize(const IntRect& rect, const IntSize& bitmapSize, SnapshotOptions options) argument
1652 float horizontalScaleFactor = static_cast<float>(bitmapSize.width()) / rect.width();
1653 float verticalScaleFactor = static_cast<float>(bitmapSize.height()) / rect.height();
1656 RefPtr<WebImage> snapshot = WebImage::create(bitmapSize, snapshotOptionsToImageOptions(options));
1662 graphicsContext->fillRect(IntRect(IntPoint(), bitmapSize), frameVie
[all...]
H A DWebPage.h441 PassRefPtr<WebImage> snapshotAtSize(const WebCore::IntRect&, const WebCore::IntSize& bitmapSize, SnapshotOptions);
964 void takeSnapshot(WebCore::IntRect snapshotRect, WebCore::IntSize bitmapSize, uint32_t options, uint64_t callbackID);
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOHibernateRestoreKernel.c476 lastMapPage = atop_64(mapPhys + gIOHibernateCurrentHeader->bitmapSize);
533 imageReadPhys = (mapPhys + gIOHibernateCurrentHeader->bitmapSize);
568 if (!srcPhys) srcPhys = (mapPhys + gIOHibernateCurrentHeader->bitmapSize);
H A DIOHibernateIO.cpp2935 header->bitmapSize = bitmap_size;
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIOHibernatePrivate.h63 uint32_t bitmapSize; member in struct:IOHibernateImageHeader
/macosx-10.10/dyld-353.2.1/launch-cache/
H A Dupdate_dyld_shared_cache.cpp2735 const int bitmapSize = (dataEnd - dataStart)/(4*8); local
2736 uint8_t* bitmap = (uint8_t*)calloc(bitmapSize, 1);
2755 const int toc_count = bitmapSize/entry_size;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebPageProxy.h903 void takeSnapshot(WebCore::IntRect, WebCore::IntSize bitmapSize, SnapshotOptions, std::function<void (const ShareableBitmap::Handle&, CallbackBase::Error)>);
H A DWebPageProxy.cpp5149 void WebPageProxy::takeSnapshot(IntRect rect, IntSize bitmapSize, SnapshotOptions options, std::function<void (const ShareableBitmap::Handle&, CallbackBase::Error)> callbackFunction) argument
5157 m_process->send(Messages::WebPage::TakeSnapshot(rect, bitmapSize, options, callbackID), m_pageID);

Completed in 188 milliseconds