HomeSort by relevance Sort by last modified time
    Searched defs:fRowBytes (Results 1 - 6 of 6) 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 115 int rowBytes() const { return fRowBytes; }
134 int rowBytesAsPixels() const { return fRowBytes >> (fBytesPerPixel >> 1); }
144 size_t getSize() const { return fHeight * fRowBytes; }
158 size.setMul(fHeight, fRowBytes);
659 uint32_t fRowBytes;
767 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
774 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
781 return (uint8_t*)fPixels + y * fRowBytes + x;
789 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)];
797 return (uint8_t*)fPixels + y * fRowBytes + (x >> 3)
    [all...]
  /external/skia/legacy/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);
620 uint32_t fRowBytes;
    [all...]
  /external/skia/legacy/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...]
  /external/skia/src/core/
SkBitmap.cpp 33 uint32_t fRowBytes;
142 SkTSwap(fRowBytes, other.fRowBytes);
286 fRowBytes = rowBytes;
459 return (fHeight ? ((fHeight - 1) * fRowBytes) +
464 return ComputeSafeSize64(getConfig(), fWidth, fHeight, fRowBytes);
471 dstRowBytes = fRowBytes;
479 if (!preserveDstPad && static_cast<uint32_t>(dstRowBytes) == fRowBytes) {
504 row++, srcP += fRowBytes, dstP += dstRowBytes) {
765 const int rowBytes = fRowBytes;
    [all...]

Completed in 114 milliseconds