Home
last modified time | relevance | path

Searched refs:to_objects (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/collector/
Dsemi_space.cc210 const uint64_t to_objects = objects_moved_; in MarkingPhase() local
211 CHECK_LE(to_objects, from_objects); in MarkingPhase()
214 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes)); in MarkingPhase()
Dconcurrent_copying.cc2726 uint64_t to_objects = objects_moved_.load(std::memory_order_relaxed) + objects_moved_gc_thread_; in ReclaimPhase() local
2727 cumulative_objects_moved_.fetch_add(to_objects, std::memory_order_relaxed); in ReclaimPhase()
2732 CHECK_LE(to_objects, from_objects); in ReclaimPhase()
2754 uint64_t freed_objects = cleared_objects - to_objects; in ReclaimPhase()
2760 << " to_bytes=" << to_bytes << " to_objects=" << to_objects in ReclaimPhase()