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 35 uint32_t fRowBytes;
62 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
73 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
85 uint16_t* row = (uint16_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
98 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
SkBitmap.h 110 int rowBytes() const { return fRowBytes; }
129 int rowBytesAsPixels() const { return fRowBytes >> (fBytesPerPixel >> 1); }
139 size_t getSize() const { return fHeight * fRowBytes; }
153 size.setMul(fHeight, fRowBytes);
610 uint32_t fRowBytes;
803 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 31 uint32_t fRowBytes;
141 SkTSwap(fRowBytes, other.fRowBytes);
272 fRowBytes = rowBytes;
452 return (fHeight ? ((fHeight - 1) * fRowBytes) +
457 return ComputeSafeSize64(getConfig(), fWidth, fHeight, fRowBytes);
464 dstRowBytes = fRowBytes;
472 if (!preserveDstPad && static_cast<uint32_t>(dstRowBytes) == fRowBytes) {
497 row++, srcP += fRowBytes, dstP += dstRowBytes) {
683 const int rowBytes = fRowBytes;
    [all...]

Completed in 47 milliseconds