HomeSort by relevance Sort by last modified time
    Searched refs:atomic_entry (Results 1 - 2 of 2) sorted by null

  /art/runtime/gc/accounting/
bitmap-inl.h 36 auto* atomic_entry = reinterpret_cast<Atomic<uintptr_t>*>(&bitmap_begin_[word_index]); local
39 old_word = atomic_entry->LoadRelaxed();
45 } while (!atomic_entry->CompareExchangeWeakSequentiallyConsistent(old_word,
space_bitmap-inl.h 39 Atomic<uintptr_t>* atomic_entry = reinterpret_cast<Atomic<uintptr_t>*>(&bitmap_begin_[index]); local
43 old_word = atomic_entry->LoadRelaxed();
49 } while (!atomic_entry->CompareExchangeWeakSequentiallyConsistent(old_word, old_word | mask));

Completed in 34 milliseconds