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

  /art/runtime/gc/accounting/
bitmap-inl.h 36 auto* atomic_entry = reinterpret_cast<Atomic<uintptr_t>*>(&bitmap_begin_[word_index]);
53 return (bitmap_begin_[BitIndexToWordIndex(bit_index)] & BitIndexToMask(bit_index)) != 0;
75 uintptr_t left_edge = bitmap_begin_[index_start];
97 uintptr_t w = bitmap_begin_[i];
114 right_edge = bitmap_begin_[index_end];
137 uintptr_t* address = &bitmap_begin_[word_index];
space_bitmap-inl.h 39 Atomic<uintptr_t>* atomic_entry = &bitmap_begin_[index];
58 DCHECK(bitmap_begin_ != nullptr);
61 return (bitmap_begin_[OffsetToIndex(offset)].LoadRelaxed() & OffsetToMask(offset)) != 0;
97 uintptr_t left_edge = bitmap_begin_[index_start];
120 uintptr_t w = bitmap_begin_[i].LoadRelaxed();
138 right_edge = bitmap_begin_[index_end];
161 CHECK(bitmap_begin_ != nullptr);
164 Atomic<uintptr_t>* bitmap_begin = bitmap_begin_;
188 Atomic<uintptr_t>* atomic_entry = &bitmap_begin_[index];
space_bitmap.cc 62 bitmap_begin_(reinterpret_cast<Atomic<uintptr_t>*>(bitmap_begin)),
67 CHECK(bitmap_begin_ != nullptr);
110 if (bitmap_begin_ != nullptr) {
130 ZeroAndReleasePages(reinterpret_cast<uint8_t*>(&bitmap_begin_[start_index]),
131 (end_index - start_index) * sizeof(*bitmap_begin_));
150 CHECK(live_bitmap.bitmap_begin_ != nullptr);
151 CHECK(mark_bitmap.bitmap_begin_ != nullptr);
177 Atomic<uintptr_t>* live = live_bitmap.bitmap_begin_;
178 Atomic<uintptr_t>* mark = mark_bitmap.bitmap_begin_;
bitmap.cc 36 : mem_map_(mem_map), bitmap_begin_(reinterpret_cast<uintptr_t*>(mem_map->Begin())),
38 CHECK(bitmap_begin_ != nullptr);
69 if (bitmap_begin_ != nullptr) {
bitmap.h 86 return bitmap_begin_;
117 uintptr_t* const bitmap_begin_; member in class:art::gc::accounting::Bitmap
space_bitmap.h 151 return bitmap_begin_;
214 Atomic<uintptr_t>* const bitmap_begin_; member in class:art::gc::accounting::SpaceBitmap

Completed in 340 milliseconds