Home | History | Annotate | Download | only in src

Lines Matching refs:bottom_

173       : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) { }
180 top_ = bottom_ = 0;
184 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; }
186 inline bool IsEmpty() { return top_ == bottom_; }
232 bottom_ = ((bottom_ - 1) & mask_);
233 array_[bottom_] = object;
238 int bottom() { return bottom_; }
246 // empty when top_ == bottom_. It is full when top_ + 1 == bottom
249 int bottom_;