Home
last modified time | relevance | path

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

/art/runtime/gc/collector/
Dsemi_space.cc211 const uint64_t to_objects = objects_moved_; in MarkingPhase() local
212 CHECK_LE(to_objects, from_objects); in MarkingPhase()
215 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes)); in MarkingPhase()
Dconcurrent_copying.cc2788 uint64_t to_objects = objects_moved_.load(std::memory_order_relaxed) + objects_moved_gc_thread_; in ReclaimPhase() local
2789 cumulative_objects_moved_ += to_objects; in ReclaimPhase()
2794 CHECK_LE(to_objects, from_objects); in ReclaimPhase()
2816 uint64_t freed_objects = cleared_objects - to_objects; in ReclaimPhase()
2822 << " to_bytes=" << to_bytes << " to_objects=" << to_objects in ReclaimPhase()