Home | History | Annotate | Download | only in src

Lines Matching defs:array_

173       : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) { }
178 array_ = obj_low;
204 array_[top_] = object;
214 array_[top_] = object;
222 HeapObject* object = array_[top_];
233 array_[bottom_] = object;
237 HeapObject** array() { return array_; }
244 HeapObject** array_;
245 // array_[(top - 1) & mask_] is the top element in the deque. The Deque is