Home
last modified time | relevance | path

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

/art/runtime/gc/collector/
Dobject_byte_pair.h26 struct ObjectBytePair { struct
27 explicit ObjectBytePair(uint64_t num_objects = 0, int64_t num_bytes = 0)
29 void Add(const ObjectBytePair& other) { in Add() argument
Diteration.h88 ObjectBytePair freed_;
89 ObjectBytePair freed_los_;
Dgarbage_collector.h109 void RecordFree(const ObjectBytePair& freed);
111 void RecordFreeLOS(const ObjectBytePair& freed);
Dgarbage_collector.cc56 freed_ = ObjectBytePair(); in Reset()
57 freed_los_ = ObjectBytePair(); in Reset()
260 void GarbageCollector::RecordFree(const ObjectBytePair& freed) { in RecordFree()
264 void GarbageCollector::RecordFreeLOS(const ObjectBytePair& freed) { in RecordFreeLOS()
Dsemi_space.cc214 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes)); in MarkingPhase()
Dmark_sweep.cc1213 ObjectBytePair freed; in SweepArray()
1214 ObjectBytePair freed_los; in SweepArray()
Dconcurrent_copying.cc2444 ObjectBytePair freed; in SweepArray()
2445 ObjectBytePair freed_los; in SweepArray()
2719 RecordFree(ObjectBytePair(freed_objects, freed_bytes)); in ReclaimPhase()
/art/runtime/gc/space/
Dspace.cc90 collector::ObjectBytePair ContinuousMemMapAllocSpace::Sweep(bool swap_bitmaps) { in Sweep()
95 return collector::ObjectBytePair(0, 0); in Sweep()
Dspace.h254 collector::ObjectBytePair freed;
451 collector::ObjectBytePair Sweep(bool swap_bitmaps);
Dlarge_object_space.h83 collector::ObjectBytePair Sweep(bool swap_bitmaps);
Dlarge_object_space.cc625 collector::ObjectBytePair LargeObjectSpace::Sweep(bool swap_bitmaps) { in Sweep()
627 return collector::ObjectBytePair(0, 0); in Sweep()