Home | History | Annotate | Download | only in images

Lines Matching refs:height_

49     height_ = GetInt();
64 height_ = GetShort();
68 if (height_ < 0) {
69 height_ = -height_;
72 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) {
75 if (width_ * height_ > max_pixels) {
161 if (!rle && (pos_ + (rowLen * height_) > len_ + 1)) {
165 output_ = callback->SetSize(width_, height_);
184 int y = height_ - 1;
259 CHECK(y >= 0 && y < height_);
261 y = height_ - (y + 1);
274 for (int h = height_ - 1; h >= 0; h--, row++) {
277 realH = height_ - (h + 1);