Home
last modified time | relevance | path

Searched refs:height_ (Results 1 – 15 of 15) sorted by relevance

/external/skia/src/images/
Dbmpdecoderhelper.cpp49 height_ = GetInt(); in DecodeImage()
64 height_ = GetShort(); in DecodeImage()
68 if (height_ < 0) { in DecodeImage()
69 height_ = -height_; in DecodeImage()
72 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) { in DecodeImage()
75 if (width_ * height_ > max_pixels) { in DecodeImage()
161 if (!rle && (pos_ + (rowLen * height_) > len_ + 1)) { in DecodeImage()
165 output_ = callback->SetSize(width_, height_); in DecodeImage()
184 int y = height_ - 1; in DoRLEDecode()
259 CHECK(y >= 0 && y < height_); in PutPixel()
[all …]
Dbmpdecoderhelper.h96 int height_; variable
/external/chromium/chrome/browser/ui/gtk/download/
Ddownload_started_animation_gtk.cc61 int height_; member in __anondbe8f0170111::DownloadStartedAnimationGtk
90 height_ = gdk_pixbuf_get_height(kDownloadImage); in DownloadStartedAnimationGtk()
95 if (tab_contents_bounds_.height() < height_) in DownloadStartedAnimationGtk()
115 GdkBitmap* mask = gdk_pixmap_new(NULL, width_, height_, 1); in DownloadStartedAnimationGtk()
143 height_ - height_ * (1 - GetCurrentValue()))); in Reposition()
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dminimize.h327 for (size_t i = height_.size(); i <= (size_t)s; ++i) in InitState()
328 height_.push_back(-1); in InitState()
346 if (height_[arc.nextstate] + 1 > height_[s]) in ForwardOrCrossArc()
347 height_[s] = height_[arc.nextstate] + 1; in ForwardOrCrossArc()
353 if (height_[s] == -1) height_[s] = 0; in FinishState()
354 StateId h = height_[s] + 1; in FinishState()
356 if (h > height_[parent]) height_[parent] = h; in FinishState()
366 const vector<StateId>& height() const { return height_; } in height()
371 vector<StateId> height_;
/external/openfst/src/include/fst/
Dminimize.h340 for (size_t i = height_.size(); i <= s; ++i) in InitState()
341 height_.push_back(-1); in InitState()
359 if (height_[arc.nextstate] + 1 > height_[s]) in ForwardOrCrossArc()
360 height_[s] = height_[arc.nextstate] + 1; in ForwardOrCrossArc()
366 if (height_[s] == -1) height_[s] = 0; in FinishState()
367 StateId h = height_[s] + 1; in FinishState()
369 if (h > height_[parent]) height_[parent] = h; in FinishState()
379 const vector<StateId>& height() const { return height_; } in height()
384 vector<StateId> height_;
/external/chromium/chrome/browser/chromeos/login/
Dlogin_html_dialog.cc59 height_ = static_cast<int>(kDefaultHeightRatio * screen_bounds.height()); in LoginHtmlDialog()
95 height_ = height; in SetDialogSize()
123 size->SetSize(width_, height_); in GetDialogSize()
Dlogin_html_dialog.h88 int height_; variable
/external/chromium/chrome/browser/resources/net_internals/
Dview.js22 this.height_ = height;
59 return this.height_;
88 this.height_ = this.node_.offsetHeight;
/external/webp/src/dec/
Dalpha.c29 if (row < 0 || row + num_rows > dec->pic_hdr_.height_) { in VP8DecompressAlphaRows()
38 const size_t output_size = stride * dec->pic_hdr_.height_; in VP8DecompressAlphaRows()
Dvp8.c337 pic_hdr->height_ = ((buf[6] << 8) | buf[5]) & 0x3fff; in VP8GetHeaders()
343 dec->mb_h_ = (pic_hdr->height_ + 15) >> 4; in VP8GetHeaders()
346 io->height = pic_hdr->height_; in VP8GetHeaders()
Dvp8i.h110 uint16_t height_; member
Dframe.c41 dec->alpha_data_ ? (dec->pic_hdr_.width_ * dec->pic_hdr_.height_) : 0; in VP8InitFrame()
/external/openfst/src/include/fst/script/
Ddraw-impl.h60 title_(title), width_(width), height_(height), portrait_(portrait), in FstDrawer()
81 Print(height_); in Draw()
220 float height_; variable
/external/chromium/chrome/browser/ui/cocoa/
Dview_resizer_pong.h15 CGFloat height_;
Dview_resizer_pong.mm11 @synthesize height = height_;