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

  /art/runtime/gc/collector/
object_byte_pair.h 26 struct ObjectBytePair {
27 explicit ObjectBytePair(uint64_t num_objects = 0, int64_t num_bytes = 0)
29 void Add(const ObjectBytePair& other) {
iteration.h 88 ObjectBytePair freed_;
89 ObjectBytePair freed_los_;
garbage_collector.h 109 void RecordFree(const ObjectBytePair& freed);
111 void RecordFreeLOS(const ObjectBytePair& freed);
garbage_collector.cc 56 freed_ = ObjectBytePair();
57 freed_los_ = ObjectBytePair();
269 void GarbageCollector::RecordFree(const ObjectBytePair& freed) {
273 void GarbageCollector::RecordFreeLOS(const ObjectBytePair& freed) {
mark_sweep.cc     [all...]
semi_space.cc 268 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes));
    [all...]
concurrent_copying.cc     [all...]
  /art/runtime/gc/space/
space.cc 92 collector::ObjectBytePair ContinuousMemMapAllocSpace::Sweep(bool swap_bitmaps) {
97 return collector::ObjectBytePair(0, 0);
space.h 254 collector::ObjectBytePair freed;
450 collector::ObjectBytePair Sweep(bool swap_bitmaps);
large_object_space.h 83 collector::ObjectBytePair Sweep(bool swap_bitmaps);
large_object_space.cc 611 collector::ObjectBytePair LargeObjectSpace::Sweep(bool swap_bitmaps) {
613 return collector::ObjectBytePair(0, 0);

Completed in 139 milliseconds