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

  /external/skia/include/core/
SkMask.h 57 uint32_t fRowBytes;
84 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
95 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
105 return reinterpret_cast<const uint32_t*>(fImage + SkAlign4(fRowBytes * fBounds.height())) +
SkBitmap.h 101 int rowBytes() const { return fRowBytes; }
120 int rowBytesAsPixels() const { return fRowBytes >> (fBytesPerPixel >> 1); }
130 size_t getSize() const { return fHeight * fRowBytes; }
138 size.setMul(fHeight, fRowBytes);
468 uint32_t fRowBytes;
644 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
651 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
658 return (uint8_t*)fPixels + y * fRowBytes + x;
666 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)];
674 return (uint8_t*)fPixels + y * fRowBytes + (x >> 3)
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 35 uint32_t fRowBytes;
138 SkTSwap<uint32_t>(fRowBytes, other.fRowBytes);
245 fRowBytes = rowBytes;
548 const int rowBytes = fRowBytes;
986 level[i].fRowBytes = rowBytes;
1025 mip.fWidth, mip.fHeight, mip.fRowBytes);
1124 srcM.fRowBytes = SkAlign4(this->width());
1136 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
1140 srcM.fRowBytes);
    [all...]

Completed in 492 milliseconds