Home
last modified time | relevance | path

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

/art/runtime/gc/collector/
Dsemi_space.cc260 const uint64_t from_objects = from_space_->GetObjectsAllocated(); in MarkingPhase() local
262 CHECK_LE(to_objects, from_objects); in MarkingPhase()
265 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes)); in MarkingPhase()
Dconcurrent_copying.cc1307 uint64_t from_objects = region_space_->GetObjectsAllocatedInFromSpace(); in ReclaimPhase() local
1313 CHECK_EQ(from_space_num_objects_at_first_pause_, from_objects + unevac_from_objects); in ReclaimPhase()
1316 CHECK_LE(to_objects, from_objects); in ReclaimPhase()
1319 int64_t freed_objects = from_objects - to_objects; in ReclaimPhase()
1322 << " from_bytes=" << from_bytes << " from_objects=" << from_objects in ReclaimPhase()