Home
last modified time | relevance | path

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

/art/runtime/gc/accounting/
Dbitmap-inl.h37 auto* atomic_entry = reinterpret_cast<Atomic<uintptr_t>*>(&bitmap_begin_[word_index]); in AtomicTestAndSetBit()
53 return (bitmap_begin_[BitIndexToWordIndex(bit_index)] & BitIndexToMask(bit_index)) != 0; in TestBit()
75 uintptr_t left_edge = bitmap_begin_[index_start]; in VisitSetBits()
97 uintptr_t w = bitmap_begin_[i]; in VisitSetBits()
114 right_edge = bitmap_begin_[index_end]; in VisitSetBits()
137 uintptr_t* address = &bitmap_begin_[word_index]; in ModifyBit()
Dspace_bitmap-inl.h40 Atomic<uintptr_t>* atomic_entry = &bitmap_begin_[index]; in AtomicTestAndSet()
59 DCHECK(bitmap_begin_ != nullptr); in Test()
62 return (bitmap_begin_[OffsetToIndex(offset)].LoadRelaxed() & OffsetToMask(offset)) != 0; in Test()
99 uintptr_t left_edge = bitmap_begin_[index_start]; in VisitMarkedRange()
122 uintptr_t w = bitmap_begin_[i].LoadRelaxed(); in VisitMarkedRange()
141 right_edge = bitmap_begin_[index_end]; in VisitMarkedRange()
166 CHECK(bitmap_begin_ != nullptr); in Walk()
169 Atomic<uintptr_t>* bitmap_begin = bitmap_begin_; in Walk()
194 Atomic<uintptr_t>* atomic_entry = &bitmap_begin_[index]; in Modify()
Dspace_bitmap.cc67 bitmap_begin_(reinterpret_cast<Atomic<uintptr_t>*>(bitmap_begin)), in SpaceBitmap()
72 CHECK(bitmap_begin_ != nullptr); in SpaceBitmap()
116 if (bitmap_begin_ != nullptr) { in Clear()
137 ZeroAndReleasePages(reinterpret_cast<uint8_t*>(&bitmap_begin_[start_index]), in ClearRange()
138 (end_index - start_index) * sizeof(*bitmap_begin_)); in ClearRange()
157 CHECK(live_bitmap.bitmap_begin_ != nullptr); in SweepWalk()
158 CHECK(mark_bitmap.bitmap_begin_ != nullptr); in SweepWalk()
184 Atomic<uintptr_t>* live = live_bitmap.bitmap_begin_; in SweepWalk()
185 Atomic<uintptr_t>* mark = mark_bitmap.bitmap_begin_; in SweepWalk()
Dbitmap.cc36 : mem_map_(mem_map), bitmap_begin_(reinterpret_cast<uintptr_t*>(mem_map->Begin())), in Bitmap()
38 CHECK(bitmap_begin_ != nullptr); in Bitmap()
69 if (bitmap_begin_ != nullptr) { in Clear()
Dbitmap.h86 return bitmap_begin_; in Begin()
117 uintptr_t* const bitmap_begin_; variable
Dspace_bitmap.h168 return bitmap_begin_; in Begin()
233 Atomic<uintptr_t>* const bitmap_begin_; variable