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

  /art/runtime/gc/collector/
garbage_collector.h 36 struct ObjectBytePair {
37 ObjectBytePair(uint64_t num_objects = 0, int64_t num_bytes = 0)
39 void Add(const ObjectBytePair& other) {
100 ObjectBytePair freed_;
101 ObjectBytePair freed_los_;
174 void RecordFree(const ObjectBytePair& freed);
176 void RecordFreeLOS(const ObjectBytePair& freed);
garbage_collector.cc 45 freed_ = ObjectBytePair();
46 freed_los_ = ObjectBytePair();
165 void GarbageCollector::RecordFree(const ObjectBytePair& freed) {
169 void GarbageCollector::RecordFreeLOS(const ObjectBytePair& freed) {
mark_compact.cc 390 RecordFree(ObjectBytePair(objects_freed, bytes_freed));
mark_sweep.cc     [all...]
semi_space.cc 252 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes));
    [all...]
  /art/runtime/gc/space/
space.cc 84 collector::ObjectBytePair ContinuousMemMapAllocSpace::Sweep(bool swap_bitmaps) {
89 return collector::ObjectBytePair(0, 0);
space.h 234 collector::ObjectBytePair freed;
420 collector::ObjectBytePair Sweep(bool swap_bitmaps);
large_object_space.h 69 collector::ObjectBytePair Sweep(bool swap_bitmaps);
large_object_space.cc 508 collector::ObjectBytePair LargeObjectSpace::Sweep(bool swap_bitmaps) {
510 return collector::ObjectBytePair(0, 0);

Completed in 1468 milliseconds