HomeSort by relevance Sort by last modified time
    Searched refs:LoadRelaxed (Results 1 - 25 of 30) sorted by null

1 2

  /art/runtime/gc/accounting/
atomic_stack.h 105 index = back_index_.LoadRelaxed();
136 const int32_t index = back_index_.LoadRelaxed();
143 DCHECK_GT(back_index_.LoadRelaxed(), front_index_.LoadRelaxed());
145 back_index_.StoreRelaxed(back_index_.LoadRelaxed() - 1);
146 return begin_[back_index_.LoadRelaxed()].AsMirrorPtr();
151 int32_t index = front_index_.LoadRelaxed();
152 DCHECK_LT(index, back_index_.LoadRelaxed());
160 back_index_.StoreRelaxed(back_index_.LoadRelaxed() - n);
172 DCHECK_LE(front_index_.LoadRelaxed(), back_index_.LoadRelaxed())
    [all...]
space_bitmap-inl.h 43 old_word = atomic_entry->LoadRelaxed();
61 return (bitmap_begin_[OffsetToIndex(offset)].LoadRelaxed() & OffsetToMask(offset)) != 0;
120 uintptr_t w = bitmap_begin_[i].LoadRelaxed();
166 uintptr_t w = bitmap_begin[i].LoadRelaxed();
189 uintptr_t old_word = atomic_entry->LoadRelaxed();
space_bitmap.cc 141 dest[i].StoreRelaxed(src[i].LoadRelaxed());
180 uintptr_t garbage = live[i].LoadRelaxed() & ~mark[i].LoadRelaxed();
bitmap-inl.h 39 old_word = atomic_entry->LoadRelaxed();
card_table-inl.h 44 const uintptr_t cur_word = word_atomic->LoadRelaxed() &
  /art/runtime/gc/space/
bump_pointer_space-inl.h 49 uint8_t* end = end_.LoadRelaxed();
57 objects_allocated_.StoreRelaxed(objects_allocated_.LoadRelaxed() + 1);
58 bytes_allocated_.StoreRelaxed(bytes_allocated_.LoadRelaxed() + num_bytes);
71 old_end = end_.LoadRelaxed();
bump_pointer_space.cc 163 uint64_t total = static_cast<uint64_t>(bytes_allocated_.LoadRelaxed());
181 uint64_t total = static_cast<uint64_t>(objects_allocated_.LoadRelaxed());
region_space.h 299 DCHECK_EQ(objects_allocated_.LoadRelaxed(), 0U);
410 DCHECK_EQ(objects_allocated_.LoadRelaxed(), 0U);
414 DCHECK_EQ(objects_allocated_.LoadRelaxed(), 0U);
427 return top_.LoadRelaxed();
446 DCHECK_EQ(objects_allocated_.LoadRelaxed(), 0U);
space.h 275 return end_.LoadRelaxed();
region_space-inl.h 99 old_top = top_.LoadRelaxed();
  /art/runtime/
barrier_test.cc 72 while (count1.LoadRelaxed() != num_threads) {
76 EXPECT_EQ(0, count2.LoadRelaxed());
82 EXPECT_EQ(count1.LoadRelaxed(), num_threads);
83 EXPECT_EQ(count2.LoadRelaxed(), num_threads);
127 EXPECT_EQ(count.LoadRelaxed(), expected_total_tasks);
class_table-inl.h 91 const uint32_t before = data_.LoadRelaxed();
105 const uint32_t before = data_.LoadRelaxed();
class_table.h 48 TableSlot(const TableSlot& copy) : data_(copy.data_.LoadRelaxed()) {}
55 data_.StoreRelaxed(copy.data_.LoadRelaxed());
64 return MaskHash(data_.LoadRelaxed());
atomic.h 195 T LoadRelaxed() const {
monitor.h 125 return hash_code_.LoadRelaxed() != 0;
trace.cc 663 final_offset = cur_offset_.LoadRelaxed();
879 int32_t old_offset = cur_offset_.LoadRelaxed();
    [all...]
  /art/runtime/base/
allocator.cc 85 uint64_t bytes_used = g_bytes_used[i].LoadRelaxed();
87 uint64_t total_bytes_used = g_total_bytes_used[i].LoadRelaxed();
mutex.cc 286 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
293 slot = data->cur_content_log_entry.LoadRelaxed();
307 uint64_t wait_time = data->wait_time.LoadRelaxed();
308 uint32_t contention_count = data->contention_count.LoadRelaxed();
320 uint32_t count = log[i].count.LoadRelaxed();
366 DCHECK_EQ(0, state_.LoadRelaxed());
367 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
383 if (state_.LoadRelaxed() != 0) {
417 int32_t cur_state = state_.LoadRelaxed();
438 DCHECK_EQ(state_.LoadRelaxed(), 1)
    [all...]
mutex-inl.h 134 int32_t cur_state = state_.LoadRelaxed();
158 int32_t cur_state = state_.LoadRelaxed();
166 if (num_pending_writers_.LoadRelaxed() > 0 ||
167 num_pending_readers_.LoadRelaxed() > 0) {
221 int32_t state = state_.LoadRelaxed();
  /art/compiler/utils/
atomic_dex_ref_map-inl.h 47 *out = (*array)[ref.index].LoadRelaxed();
76 visitor(DexFileReference(dex_file, i), elements[i].LoadRelaxed());
  /art/runtime/gc/collector/
concurrent_copying-inl.h 79 updated_all_immune_objects_.LoadRelaxed() ||
85 if (!kGrayImmuneObject || updated_all_immune_objects_.LoadRelaxed()) {
mark_sweep.cc 704 static_cast<uintptr_t>(mark_sweep_->atomic_finger_.LoadRelaxed())) {
    [all...]
concurrent_copying.cc     [all...]
  /art/runtime/mirror/
object.cc 90 reinterpret_cast<Atomic<uintptr_t>*>(src_bytes)->LoadRelaxed());
98 reinterpret_cast<Atomic<uint32_t>*>(src_bytes)->LoadRelaxed());
107 reinterpret_cast<Atomic<uint8_t>*>(src_bytes)->LoadRelaxed());
175 expected_value = hash_code_seed.LoadRelaxed();
  /art/runtime/gc/
heap.cc     [all...]

Completed in 194 milliseconds

1 2