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.h101 uint8_t* new_top; in Alloc() local
104 new_top = old_top + num_bytes; in Alloc()
105 if (UNLIKELY(new_top > end_)) { in Alloc()
108 } while (!top_.CompareAndSetWeakRelaxed(old_top, new_top)); in Alloc()
112 DCHECK_LE(new_top, end_); in Alloc()
Dregion_space.h467 void SetTop(uint8_t* new_top) { in SetTop() argument
468 top_.StoreRelaxed(new_top); in SetTop()