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

  /external/chromium_org/third_party/skia/src/lazy/
SkCachingPixelRef.h 61 const size_t fRowBytes;
SkDiscardablePixelRef.h 33 const size_t fRowBytes;
  /external/skia/src/lazy/
SkCachingPixelRef.h 61 const size_t fRowBytes;
SkDiscardablePixelRef.h 33 const size_t fRowBytes;
  /external/chromium_org/third_party/skia/src/core/
SkMipMap.h 22 uint32_t fRowBytes;
SkBitmap.cpp 33 uint32_t fRowBytes;
142 SkTSwap(fRowBytes, other.fRowBytes);
316 fRowBytes = SkToU32(rowBytes);
462 SkPixelRef* pr = SkMallocPixelRef::NewDirect(info, p, fRowBytes, ctable);
557 return (fHeight ? ((fHeight - 1) * fRowBytes) +
562 return ComputeSafeSize64(this->config(), fWidth, fHeight, fRowBytes);
569 dstRowBytes = fRowBytes;
576 if (!preserveDstPad && static_cast<uint32_t>(dstRowBytes) == fRowBytes) {
601 row++, srcP += fRowBytes, dstP += dstRowBytes)
    [all...]
  /external/skia/src/core/
SkMipMap.h 22 uint32_t fRowBytes;
SkBitmap.cpp 33 uint32_t fRowBytes;
142 SkTSwap(fRowBytes, other.fRowBytes);
316 fRowBytes = SkToU32(rowBytes);
462 SkPixelRef* pr = SkMallocPixelRef::NewDirect(info, p, fRowBytes, ctable);
557 return (fHeight ? ((fHeight - 1) * fRowBytes) +
562 return ComputeSafeSize64(this->config(), fWidth, fHeight, fRowBytes);
569 dstRowBytes = fRowBytes;
576 if (!preserveDstPad && static_cast<uint32_t>(dstRowBytes) == fRowBytes) {
601 row++, srcP += fRowBytes, dstP += dstRowBytes)
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkDecodingImageGenerator.cpp 25 , fRowBytes(rowBytes)
35 fRowBytes, bm->alphaType());
42 size_t fRowBytes;
  /external/skia/src/images/
SkDecodingImageGenerator.cpp 25 , fRowBytes(rowBytes)
35 fRowBytes, bm->alphaType());
42 size_t fRowBytes;
  /external/chromium_org/third_party/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);
111 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
SkBitmap.h 106 size_t rowBytes() const { return fRowBytes; }
125 int rowBytesAsPixels() const { return fRowBytes >> (fBytesPerPixel >> 1); }
144 size_t getSize() const { return fHeight * fRowBytes; }
158 size.setMul(fHeight, fRowBytes);
669 uint32_t fRowBytes;
789 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
796 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
803 return (uint8_t*)fPixels + y * fRowBytes + x;
811 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)];
SkImageDecoder.h 349 size_t fRowBytes;
  /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);
111 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
SkBitmap.h 106 size_t rowBytes() const { return fRowBytes; }
125 int rowBytesAsPixels() const { return fRowBytes >> (fBytesPerPixel >> 1); }
144 size_t getSize() const { return fHeight * fRowBytes; }
158 size.setMul(fHeight, fRowBytes);
669 uint32_t fRowBytes;
789 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
796 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
803 return (uint8_t*)fPixels + y * fRowBytes + x;
811 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)];
SkImageDecoder.h 349 size_t fRowBytes;

Completed in 74 milliseconds