Home | History | Annotate | Download | only in src

Lines Matching refs:top

44   Address* top = reinterpret_cast<Address*>(heap_->store_buffer_top());
45 *top++ = addr;
46 heap_->public_set_store_buffer_top(top);
47 if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) {
48 ASSERT(top == limit_);
51 ASSERT(top < limit_);
62 Address* top = old_top_;
63 *top++ = addr;
64 old_top_ = top;
67 if (top >= old_limit_) {