Searched refs:atomic_entry (Results 1 – 2 of 2) sorted by relevance
36 auto* atomic_entry = reinterpret_cast<Atomic<uintptr_t>*>(&bitmap_begin_[word_index]); in AtomicTestAndSetBit() local39 old_word = atomic_entry->LoadRelaxed(); in AtomicTestAndSetBit()45 } while (!atomic_entry->CompareExchangeWeakSequentiallyConsistent(old_word, in AtomicTestAndSetBit()
39 Atomic<uintptr_t>* atomic_entry = reinterpret_cast<Atomic<uintptr_t>*>(&bitmap_begin_[index]); in AtomicTestAndSet() local43 old_word = atomic_entry->LoadRelaxed(); in AtomicTestAndSet()49 } while (!atomic_entry->CompareExchangeWeakSequentiallyConsistent(old_word, old_word | mask)); in AtomicTestAndSet()