Home | History | Annotate | Download | only in images

Lines Matching refs:height_

56     height_ = GetInt();
71 height_ = GetShort();
75 if (height_ < 0) {
76 height_ = -height_;
79 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) {
82 if (width_ * height_ > max_pixels) {
168 if (!rle && (pos_ + (rowLen * height_) > len_ + 1)) {
172 output_ = callback->SetSize(width_, height_);
191 int y = height_ - 1;
266 CHECK(y >= 0 && y < height_);
268 y = height_ - (y + 1);
281 for (int h = height_ - 1; h >= 0; h--, row++) {
284 realH = height_ - (h + 1);