Home | History | Annotate | Download | only in src

Lines Matching refs:mask_

173       : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) { }
179 mask_ = RoundDownToPowerOf2(static_cast<int>(obj_high - obj_low)) - 1;
184 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; }
205 top_ = ((top_ + 1) & mask_);
215 top_ = ((top_ + 1) & mask_);
221 top_ = ((top_ - 1) & mask_);
232 bottom_ = ((bottom_ - 1) & mask_);
240 int mask() { return mask_; }
245 // array_[(top - 1) & mask_] is the top element in the deque. The Deque is
250 int mask_;