Searched refs:bytesPerRow (Results 1 - 25 of 26) sorted by relevance

12

/external/webkit/Source/WebCore/platform/image-decoders/haiku/
H A DImageDecoderHaiku.cpp36 int bytesPerRow = width() * sizeof(PixelData); local
37 OwnPtr<BBitmap> bitmap(new BBitmap(BRect(0, 0, width() - 1, height() - 1), 0, B_RGBA32, bytesPerRow));
46 memcpy(dst, source, bytesPerRow);
66 destination += bytesPerRow;
67 source += bytesPerRow;
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscossprite.c51 int bytesPerRow; local
67 bytesPerRow = bytesPerPixel * width;
69 if ((bytesPerRow & 3) != 0)
71 bytesPerRow += 4 - (bytesPerRow & 3);
73 size = bytesPerRow * height;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DDIBPixelData.h59 unsigned bytesPerRow() const { return m_bytesPerRow; } function in class:WebCore::DIBPixelData
H A DQTPixelBuffer.h70 size_t bytesPerRow() const;
H A DGraphicsContextCairoWin.cpp104 pixelData.bytesPerRow());
144 setRGBABitmapAlpha(bytes, pixelData.size().height() * pixelData.bytesPerRow(), 255);
H A DGraphicsContextCGWin.cpp57 pixelData.bytesPerRow(), deviceRGBColorSpaceRef(), bitmapInfo);
108 pixelData.bytesPerRow(), deviceRGBColorSpaceRef(), kCGBitmapByteOrder32Little |
126 RetainPtr<CGImageRef> cgImage(AdoptCF, CGImageCreate(image->size().width(), image->size().height(), 8, 32, image->bytesPerRow(), deviceRGBColorSpaceRef(),
H A DQTPixelBuffer.cpp166 size_t QTPixelBuffer::bytesPerRow() const function in class:QTPixelBuffer
H A DMediaPlayerPrivateQuickTimeVisualContext.cpp855 image = CGImageCreate(buffer.width(), buffer.height(), bitsPerComponent, bitsPerPixel, buffer.bytesPerRow(), colorSpace, alphaInfo, provider, 0, false, kCGRenderingIntentDefault);
903 uint64_t imageId = m_imageQueue->registerPixelBuffer(buffer.baseAddress(), buffer.dataSize(), buffer.bytesPerRow(), buffer.width(), buffer.height(), buffer.pixelFormatType(), attachments.get(), 0);
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContext3DCairo.cpp73 size_t bytesPerRow = cairo_image_surface_get_stride(imageSurface.get()); local
75 unsigned int padding = bytesPerRow - bitsPerPixel / 8 * width;
78 while (bytesPerRow % srcUnpackAlignment)
/external/webkit/Tools/DumpRenderTree/cg/
H A DPixelDumpSupportCG.cpp78 size_t bytesPerRow = CGBitmapContextGetBytesPerRow(bitmapContext); local
91 bitmapData += bytesPerRow;
98 bitmapData += bytesPerRow;
/external/webkit/Source/WebKit/mac/Carbon/
H A DCarbonUtils.m34 extern CGImageRef _NSCreateImageRef( unsigned char *const bitmapData[5], int pixelsWide, int pixelsHigh, int bitsPerSample, int samplesPerPixel, int bitsPerPixel, int bytesPerRow, BOOL isPlanar, BOOL hasAlpha, NSString *colorSpaceName, CGColorSpaceRef customColorSpace, id sourceObj);
125 [rep bytesPerRow], [rep isPlanar], [rep hasAlpha], [rep colorSpaceName],
/external/webkit/Source/WebKit2/Shared/mac/
H A DShareableSurface.cpp85 unsigned long bytesPerRow = IOSurfaceAlignProperty(kIOSurfaceBytesPerRow, width * bytesPerElement); local
86 if (!bytesPerRow)
89 unsigned long allocSize = IOSurfaceAlignProperty(kIOSurfaceAllocSize, height * bytesPerRow);
107 values[4] = CFNumberCreate(0, kCFNumberLongType, &bytesPerRow);
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageBufferCG.cpp64 unsigned long bytesPerRow = IOSurfaceAlignProperty(kIOSurfaceBytesPerRow, size.width() * bytesPerElement); local
65 if (!bytesPerRow)
68 unsigned long allocSize = IOSurfaceAlignProperty(kIOSurfaceAllocSize, size.height() * bytesPerRow);
83 values[4] = CFNumberCreate(0, kCFNumberLongType, &bytesPerRow);
115 unsigned bytesPerRow = size.width(); local
116 if (bytesPerRow > 0x3FFFFFFF) // Protect against overflow
118 bytesPerRow *= 4;
119 m_data.m_bytesPerRow = bytesPerRow;
120 size_t dataSize = size.height() * bytesPerRow;
136 if (!tryFastCalloc(size.height(), bytesPerRow)
[all...]
H A DGraphicsContext3DCG.cpp245 size_t bytesPerRow = CGImageGetBytesPerRow(cgImage); local
246 unsigned int padding = bytesPerRow - bitsPerPixel / 8 * width;
249 while (bytesPerRow % srcUnpackAlignment)
/external/webkit/Source/WebCore/platform/image-encoders/
H A DPNGImageEncoder.cpp116 unsigned bytesPerRow = size.width() * 4; local
119 rgbaBigEndianData += bytesPerRow;
/external/webkit/Tools/DumpRenderTree/cairo/
H A DPixelDumpSupportCairo.cpp73 size_t bytesPerRow = cairo_image_surface_get_stride(surface); local
79 bitmapData += bytesPerRow;
/external/webkit/Tools/WebKitTestRunner/cg/
H A DTestInvocationCG.cpp70 size_t bytesPerRow = CGBitmapContextGetBytesPerRow(bitmapContext); local
82 bitmapData += bytesPerRow;
88 bitmapData += bytesPerRow;
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DImageHaiku.cpp137 uint32 bytesPerRow = image->BytesPerRow(); local
144 bits += bytesPerRow;
H A DImageBufferHaiku.cpp109 unsigned bytesPerRow = m_data.m_bitmap.BytesPerRow(); local
125 rowData += bytesPerRow;
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
H A DSDL_QuartzWM.m52 imgrep = [ [ [ NSBitmapImageRep alloc ] initWithBitmapDataPlanes: NULL pixelsWide: w pixelsHigh: h bitsPerSample: 1 samplesPerPixel: 2 hasAlpha: YES isPlanar: YES colorSpaceName: NSDeviceWhiteColorSpace bytesPerRow: (w+7)/8 bitsPerPixel: 0 ] autorelease ];
425 imgrep = [ [ [ NSBitmapImageRep alloc ] initWithBitmapDataPlanes: NULL pixelsWide: icon->w pixelsHigh: icon->h bitsPerSample: 8 samplesPerPixel: 4 hasAlpha: YES isPlanar: NO colorSpaceName: NSDeviceRGBColorSpace bytesPerRow: 4*icon->w bitsPerPixel: 32 ] autorelease ];
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.h495 unsigned bytesPerRow() const { return m_pixelData.bytesPerRow(); } function in class:WebCore::GraphicsContext::WindowsBitmap
/external/webkit/Source/WebCore/platform/chromium/
H A DThemeChromiumMac.mm119 bytesPerRow:4
/external/webkit/Source/WebCore/rendering/
H A DRenderThemeMac.mm306 bytesPerRow:4
333 bytesPerRow:4
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapePluginView.mm2439 bytesPerRow:0
2454 [bitmap bytesPerRow]) != noErr) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 514 milliseconds

12