Home
last modified time | relevance | path

Searched refs:ObjectBytePair (Results 1 – 10 of 10) sorted by relevance

/art/runtime/gc/collector/
Dgarbage_collector.h37 struct ObjectBytePair { struct
38 ObjectBytePair(uint64_t num_objects = 0, int64_t num_bytes = 0)
40 void Add(const ObjectBytePair& other) { in Add() argument
107 ObjectBytePair freed_;
108 ObjectBytePair freed_los_;
170 void RecordFree(const ObjectBytePair& freed);
172 void RecordFreeLOS(const ObjectBytePair& freed);
Dgarbage_collector.cc51 freed_ = ObjectBytePair(); in Reset()
52 freed_los_ = ObjectBytePair(); in Reset()
178 void GarbageCollector::RecordFree(const ObjectBytePair& freed) { in RecordFree()
182 void GarbageCollector::RecordFreeLOS(const ObjectBytePair& freed) { in RecordFreeLOS()
Dmark_compact.cc427 RecordFree(ObjectBytePair(objects_freed, bytes_freed)); in Compact()
Dmark_sweep.cc1122 ObjectBytePair freed; in SweepArray()
1123 ObjectBytePair freed_los; in SweepArray()
Dsemi_space.cc254 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes)); in MarkingPhase()
Dconcurrent_copying.cc919 RecordFree(ObjectBytePair(freed_objects, freed_bytes)); in ReclaimPhase()
/art/runtime/gc/space/
Dspace.cc89 collector::ObjectBytePair ContinuousMemMapAllocSpace::Sweep(bool swap_bitmaps) { in Sweep()
94 return collector::ObjectBytePair(0, 0); in Sweep()
Dspace.h255 collector::ObjectBytePair freed;
441 collector::ObjectBytePair Sweep(bool swap_bitmaps);
Dlarge_object_space.h77 collector::ObjectBytePair Sweep(bool swap_bitmaps);
Dlarge_object_space.cc593 collector::ObjectBytePair LargeObjectSpace::Sweep(bool swap_bitmaps) { in Sweep()
595 return collector::ObjectBytePair(0, 0); in Sweep()