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.cc 54 : 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_ != nullptr)
    [all...]
space_bitmap-inl.h 39 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];
bitmap.cc 34 : mem_map_(mem_map), bitmap_begin_(reinterpret_cast<uintptr_t*>(mem_map->Begin())),
36 CHECK(bitmap_begin_ != nullptr);
67 if (bitmap_begin_ != nullptr) {
bitmap.h 87 return bitmap_begin_;
118 uintptr_t* const bitmap_begin_; member in class:art::gc::accounting::Bitmap
space_bitmap.h 151 return bitmap_begin_;
218 uintptr_t* const bitmap_begin_; member in class:art::gc::accounting::SpaceBitmap

Completed in 76 milliseconds