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

  /external/webkit/Source/WebCore/platform/win/
BitmapInfo.h 58 unsigned paddedWidth() const { return paddedBytesPerLine() * 8 / bmiHeader.biBitCount; }
59 unsigned numPixels() const { return paddedWidth() * height(); }
  /frameworks/base/libs/hwui/
FontRenderer.cpp 732 uint32_t paddedWidth = (uint32_t) (bounds.right - bounds.left) + 2 * radius;
734 uint8_t* dataBuffer = new uint8_t[paddedWidth * paddedHeight];
736 for (uint32_t i = 0; i < paddedWidth * paddedHeight; i++) {
744 dataBuffer, paddedWidth, paddedHeight);
745 blurImage(dataBuffer, paddedWidth, paddedHeight, radius);
748 image.width = paddedWidth;
  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.cpp 136 int paddedWidth = newBmpInfo.paddedWidth();
137 int bufferSize = paddedWidth * newBmpInfo.height();
147 bool skips = paddedWidth != width;
591 unsigned w = m_bmpInfo.paddedWidth();

Completed in 2691 milliseconds