Home | History | Annotate | Download | only in heap

Lines Matching refs:start_

21       start_(nullptr),
32 start_ = reinterpret_cast<Address*>(RoundUp(start_as_int, kStoreBufferSize));
33 limit_ = start_ + (kStoreBufferSize / kPointerSize);
35 DCHECK(reinterpret_cast<Address>(start_) >= virtual_memory_->address());
40 DCHECK(start_ <= vm_limit);
45 if (!virtual_memory_->Commit(reinterpret_cast<Address>(start_),
50 top_ = start_;
56 top_ = start_ = limit_ = nullptr;
66 if (top_ == start_) return;
68 for (Address* current = start_; current < top_; current++) {
74 top_ = start_;