HomeSort by relevance Sort by last modified time
    Searched refs:bytesPerRow (Results 1 - 17 of 17) sorted by null

  /external/webkit/WebCore/platform/image-encoders/skia/
PNGImageEncoder.h 50 static bool encode(const unsigned char* input, const IntSize& size, int bytesPerRow, WTF::Vector<unsigned char>* output);
PNGImageEncoder.cpp 117 int bytesPerRow,
127 if (inputColorComponents * imageSize.width() > bytesPerRow) {
164 convertBetweenBGRAandRGBA(&input[y * bytesPerRow], imageSize.width(), rowPixels.get());
  /external/webkit/WebCore/platform/image-decoders/haiku/
ImageDecoderHaiku.cpp 36 int bytesPerRow = width() * sizeof(PixelData);
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.12/src/video/riscos/
SDL_riscossprite.c 51 int bytesPerRow;
67 bytesPerRow = bytesPerPixel * width;
69 if ((bytesPerRow & 3) != 0)
71 bytesPerRow += 4 - (bytesPerRow & 3);
73 size = bytesPerRow * height;
  /external/webkit/WebKitTools/DumpRenderTree/cairo/
PixelDumpSupportCairo.cpp 76 size_t bytesPerRow = pixelsWide * cairo_image_surface_get_stride(surface);
83 bitmapData += bytesPerRow;
  /external/webkit/WebKitTools/DumpRenderTree/cg/
PixelDumpSupportCG.cpp 78 size_t bytesPerRow = CGBitmapContextGetBytesPerRow(bitmapContext);
91 bitmapData += bytesPerRow;
98 bitmapData += bytesPerRow;
  /external/webkit/WebKit/mac/Carbon/
CarbonUtils.m 34 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/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 57 unsigned bytesPerRow;
60 bytesPerRow = size.width();
63 if (bytesPerRow > 0x3FFFFFFF)
65 bytesPerRow *= 4;
68 if (!tryFastCalloc(size.height(), bytesPerRow).getValue(m_data.m_data))
91 RetainPtr<CGContextRef> cgContext(AdoptCF, CGBitmapContextCreate(m_data.m_data, size.width(), size.height(), 8, bytesPerRow,
  /external/webkit/WebCore/platform/graphics/haiku/
ImageHaiku.cpp 136 uint32 bytesPerRow = image->BytesPerRow();
143 bits += bytesPerRow;
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzWM.m 51 imgrep = [ [ [ NSBitmapImageRep alloc ] initWithBitmapDataPlanes: NULL pixelsWide: w pixelsHigh: h bitsPerSample: 1 samplesPerPixel: 2 hasAlpha: YES isPlanar: YES colorSpaceName: NSDeviceBlackColorSpace bytesPerRow: (w+7)/8 bitsPerPixel: 0 ] autorelease ];
429 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/WebCore/platform/graphics/win/
GraphicsContextCGWin.cpp 122 RetainPtr<CGImageRef> cgImage(AdoptCF, CGImageCreate(image->size().width(), image->size().height(), 8, 32, image->bytesPerRow(), deviceRGB.get(),
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.h 386 unsigned bytesPerRow() const { return m_bytesPerRow; }
  /external/webkit/WebCore/platform/chromium/
ThemeChromiumMac.mm 118 bytesPerRow:4
  /external/webkit/WebCore/rendering/
RenderThemeChromiumMac.mm 338 bytesPerRow:4
365 bytesPerRow:4
    [all...]
RenderThemeMac.mm 286 bytesPerRow:4
313 bytesPerRow:4
    [all...]
  /external/webkit/WebKit/mac/Plugins/
WebNetscapePluginView.mm     [all...]
  /prebuilt/darwin-x86_64/swt/
swt.jar 

Completed in 440 milliseconds