Searched refs:bitmap_begin_ (Results 1 – 6 of 6) sorted by relevance
37 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()
40 Atomic<uintptr_t>* atomic_entry = &bitmap_begin_[index]; in AtomicTestAndSet()59 DCHECK(bitmap_begin_ != nullptr); in Test()63 return (bitmap_begin_[index].load(std::memory_order_relaxed) & OffsetToMask(offset)) != 0; in Test()80 uintptr_t word = bitmap_begin_[index_start].load(std::memory_order_relaxed); in FindPrecedingObject()90 word = bitmap_begin_[--index_start].load(std::memory_order_relaxed); in FindPrecedingObject()137 uintptr_t left_edge = bitmap_begin_[index_start]; in VisitMarkedRange()163 uintptr_t w = bitmap_begin_[i].load(std::memory_order_relaxed); in VisitMarkedRange()185 right_edge = bitmap_begin_[index_end]; in VisitMarkedRange()213 CHECK(bitmap_begin_ != nullptr); in Walk()216 Atomic<uintptr_t>* bitmap_begin = bitmap_begin_; in Walk()[all …]
70 bitmap_begin_(reinterpret_cast<Atomic<uintptr_t>*>(bitmap_begin)), in SpaceBitmap()75 CHECK(bitmap_begin_ != nullptr); in SpaceBitmap()129 Atomic<uintptr_t>* atomic_entry = &bitmap_begin_[index]; in DumpMemAround()152 if (bitmap_begin_ != nullptr) { in Clear()175 ZeroAndReleaseMemory(reinterpret_cast<uint8_t*>(&bitmap_begin_[start_index]), in ClearRange()176 (end_index - start_index) * sizeof(*bitmap_begin_)); in ClearRange()195 CHECK(live_bitmap.bitmap_begin_ != nullptr); in SweepWalk()196 CHECK(mark_bitmap.bitmap_begin_ != nullptr); in SweepWalk()208 Atomic<uintptr_t>* live = live_bitmap.bitmap_begin_; in SweepWalk()209 Atomic<uintptr_t>* mark = mark_bitmap.bitmap_begin_; in SweepWalk()
172 return bitmap_begin_; in Begin()231 return bitmap_begin_ != nullptr; in IsValid()236 bitmap_begin_ = other.bitmap_begin_; in CopyView()262 Atomic<uintptr_t>* bitmap_begin_ = nullptr; variable
38 bitmap_begin_(reinterpret_cast<uintptr_t*>(mem_map_.Begin())), in Bitmap()40 CHECK(bitmap_begin_ != nullptr); in Bitmap()72 if (bitmap_begin_ != nullptr) { in Clear()
87 return bitmap_begin_; in Begin()118 uintptr_t* const bitmap_begin_; variable