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

  /art/runtime/gc/accounting/
heap_bitmap.h 48 LargeObjectBitmap* GetLargeObjectBitmap(const mirror::Object* obj) const;
60 void ReplaceLargeObjectBitmap(LargeObjectBitmap* old_bitmap, LargeObjectBitmap* new_bitmap)
70 void AddLargeObjectBitmap(LargeObjectBitmap* bitmap);
71 void RemoveLargeObjectBitmap(LargeObjectBitmap* bitmap);
79 std::vector<LargeObjectBitmap*,
80 TrackingAllocator<LargeObjectBitmap*, kAllocatorTagHeapBitmapLOS>>
heap_bitmap.cc 35 void HeapBitmap::ReplaceLargeObjectBitmap(LargeObjectBitmap* old_bitmap,
36 LargeObjectBitmap* new_bitmap) {
62 void HeapBitmap::AddLargeObjectBitmap(LargeObjectBitmap* bitmap) {
67 void HeapBitmap::RemoveLargeObjectBitmap(LargeObjectBitmap* bitmap) {
heap_bitmap-inl.h 108 inline LargeObjectBitmap* HeapBitmap::GetLargeObjectBitmap(const mirror::Object* obj) const {
space_bitmap.h 231 typedef SpaceBitmap<kLargeObjectAlignment> LargeObjectBitmap;
  /art/runtime/gc/space/
space.h 347 accounting::LargeObjectBitmap* GetLiveBitmap() const {
351 accounting::LargeObjectBitmap* GetMarkBitmap() const {
364 std::unique_ptr<accounting::LargeObjectBitmap> live_bitmap_;
365 std::unique_ptr<accounting::LargeObjectBitmap> mark_bitmap_;
space.cc 82 live_bitmap_.reset(accounting::LargeObjectBitmap::Create("large live objects", nullptr,
85 mark_bitmap_.reset(accounting::LargeObjectBitmap::Create("large marked objects", nullptr,
large_object_space.cc 582 accounting::LargeObjectBitmap* bitmap = space->GetLiveBitmap();
595 accounting::LargeObjectBitmap* live_bitmap = GetLiveBitmap();
596 accounting::LargeObjectBitmap* mark_bitmap = GetMarkBitmap();
602 accounting::LargeObjectBitmap::SweepWalk(*live_bitmap, *mark_bitmap,
  /art/runtime/gc/collector/
garbage_collector.cc 143 accounting::LargeObjectBitmap* live_set = space->GetLiveBitmap();
144 accounting::LargeObjectBitmap* mark_set = space->GetMarkBitmap();
concurrent_copying.cc     [all...]
mark_sweep.cc     [all...]
semi_space.cc 412 accounting::LargeObjectBitmap* large_live_bitmap = los->GetLiveBitmap();
    [all...]
  /art/runtime/gc/
heap.cc     [all...]

Completed in 188 milliseconds