Lines Matching defs:height
227 // The image width and height
228 int width, height;
242 height = get_int(iBuffer.get(), 4);
261 height = (int) get_short(iBuffer.get(), 2);
273 if (height < 0) {
275 if (height == INT32_MIN) {
279 height = -height;
282 // The height field for bmp in ico is double the actual height because they
285 height /= 2;
290 if (width <= 0 || height <= 0 || width >= kMaxDim || height >= kMaxDim) {
487 auto info = SkEncodedInfo::Make(width, height, color, alpha, bitsPerComponent);
546 auto info = SkEncodedInfo::Make(width, height, color, alpha, 8);
577 auto info = SkEncodedInfo::Make(width, height, SkEncodedInfo::kBGRA_Color,
620 int32_t SkBmpCodec::getDstRow(int32_t y, int32_t height) const {
625 return height - y - 1;