Searched refs:bitmap_begin_ (Results 1 - 6 of 6) sorted by relevance

/art/runtime/gc/accounting/
H A Dbitmap-inl.h36 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];
H A Dspace_bitmap.cc54 : mem_map_(mem_map), bitmap_begin_(bitmap_begin), bitmap_size_(bitmap_size),
57 CHECK(bitmap_begin_ != nullptr);
99 if (bitmap_begin_ != nullptr) {
112 CHECK(bitmap_begin_ != nullptr);
116 uintptr_t* bitmap_begin = bitmap_begin_;
136 CHECK(live_bitmap.bitmap_begin_ != nullptr);
137 CHECK(mark_bitmap.bitmap_begin_ != nullptr);
163 uintptr_t* live = live_bitmap.bitmap_begin_;
164 uintptr_t* mark = mark_bitmap.bitmap_begin_;
249 CHECK(bitmap_begin_ !
[all...]
H A Dspace_bitmap-inl.h39 Atomic<uintptr_t>* atomic_entry = reinterpret_cast<Atomic<uintptr_t>*>(&bitmap_begin_[index]);
58 DCHECK(bitmap_begin_ != nullptr);
61 return (bitmap_begin_[OffsetToIndex(offset)] & OffsetToMask(offset)) != 0;
96 uintptr_t left_edge = bitmap_begin_[index_start];
119 uintptr_t w = bitmap_begin_[i];
137 right_edge = bitmap_begin_[index_end];
167 uintptr_t* address = &bitmap_begin_[index];
H A Dbitmap.cc34 : mem_map_(mem_map), bitmap_begin_(reinterpret_cast<uintptr_t*>(mem_map->Begin())),
36 CHECK(bitmap_begin_ != nullptr);
67 if (bitmap_begin_ != nullptr) {
H A Dbitmap.h87 return bitmap_begin_;
118 uintptr_t* const bitmap_begin_; member in class:art::gc::accounting::Bitmap
H A Dspace_bitmap.h151 return bitmap_begin_;
218 uintptr_t* const bitmap_begin_; member in class:art::gc::accounting::SpaceBitmap

Completed in 58 milliseconds