Home
last modified time | relevance | path

Searched refs:new_top (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/space/
Dregion_space-inl.h106 uint8_t* new_top; in Alloc() local
109 new_top = old_top + num_bytes; in Alloc()
110 if (UNLIKELY(new_top > end_)) { in Alloc()
113 } while (!top_.CompareAndSetWeakRelaxed(old_top, new_top)); in Alloc()
117 DCHECK_LE(new_top, end_); in Alloc()
Dregion_space.h589 void SetTop(uint8_t* new_top) { in SetTop() argument
590 top_.store(new_top, std::memory_order_relaxed); in SetTop()