Searched refs:bottom_ (Results 1 - 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.cc31 bottom_ = std::min(bottom(), rect.bottom());
36 bottom_ = 0;
44 bottom_ += dy;
H A Ddesktop_geometry.h99 DesktopRect() : left_(0), top_(0), right_(0), bottom_(0) {}
104 int32_t bottom() const { return bottom_; }
106 int32_t height() const { return bottom_ - top_; }
111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; }
115 right_ == other.right_ && bottom_ == other.bottom_;
133 : left_(left), top_(top), right_(right), bottom_(bottom) {
139 int32_t bottom_; member in class:webrtc::DesktopRect
/external/deqp/framework/referencerenderer/
H A DrrRenderState.hpp217 WindowRectangle (int left_, int bottom_, int width_, int height_) argument
219 , bottom (bottom_)
/external/v8/src/heap/
H A Dmark-compact.h62 bottom_(0),
78 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; }
80 inline bool IsEmpty() { return top_ == bottom_; }
118 bottom_ = ((bottom_ - 1) & mask_);
119 array_[bottom_] = object;
125 int bottom() { return bottom_; }
170 // empty when top_ == bottom_. It is full when top_ + 1 == bottom
173 int bottom_; member in class:v8::internal::MarkingDeque
H A Dmark-compact.cc2151 top_ = bottom_ = 0;
2159 top_ = bottom_ = mask_ = 0;
2170 top_ = bottom_ = 0;

Completed in 517 milliseconds