Home | History | Annotate | Download | only in core

Lines Matching refs:fRowBytes

101         return fRowBytes >> this->shiftPerPixel();
130 size_t rowBytes() const { return fRowBytes; }
151 size_t getSize() const { return fInfo.height() * fRowBytes; }
157 size_t getSafeSize() const { return fInfo.getSafeSize(fRowBytes); }
163 return sk_64_mul(fInfo.height(), fRowBytes);
172 return fInfo.getSafeSize64(fRowBytes);
739 uint32_t fRowBytes;
760 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
767 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
774 return (uint8_t*)fPixels + y * fRowBytes + x;