Home | History | Annotate | Download | only in src

Lines Matching defs:bottom_

149       : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) { }
156 top_ = bottom_ = 0;
160 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; }
162 inline bool IsEmpty() { return top_ == bottom_; }
208 bottom_ = ((bottom_ - 1) & mask_);
209 array_[bottom_] = object;
214 int bottom() { return bottom_; }
222 // empty when top_ == bottom_. It is full when top_ + 1 == bottom
225 int bottom_;