Lines Matching refs:fWidth
185 , fWidth(0) in SkImageInfo()
232 int width() const { return fWidth; } in width()
239 bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; } in isEmpty()
245 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); } in dimensions()
246 SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); } in bounds()
261 return Make(fWidth, fHeight, fColorType, newAlphaType, fColorSpace); in makeAlphaType()
265 return Make(fWidth, fHeight, newColorType, fAlphaType, fColorSpace); in makeColorType()
269 return Make(fWidth, fHeight, fColorType, fAlphaType, std::move(cs)); in makeColorSpace()
277 return sk_64_mul(fWidth, this->bytesPerPixel()); in minRowBytes64()
289 SkASSERT((unsigned)x < (unsigned)fWidth); in computeOffset()
295 return fWidth == other.fWidth && fHeight == other.fHeight &&
310 return sk_64_mul(fHeight - 1, rowBytes) + sk_64_mul(fWidth, this->bytesPerPixel()); in getSafeSize64()
322 uint64_t rb = sk_64_mul(fWidth, this->bytesPerPixel()); in validRowBytes()
328 fWidth = 0; in reset()
338 int fWidth; member
345 , fWidth(width) in SkImageInfo()