Lines Matching refs:from_space_
1507 from_space_.SetUp(initial_semispace_capacity, maximum_semispace_capacity); in AllocateChunk()
1511 DCHECK(!from_space_.is_committed()); // No need to use memory yet. in AllocateChunk()
1540 from_space_.TearDown(); in AllocateChunk()
1543 void NewSpace::Flip() { SemiSpace::Swap(&from_space_, &to_space_); } in AllocateChunk()
1554 if (!from_space_.GrowTo(new_capacity)) { in AllocateChunk()
1557 if (!to_space_.ShrinkTo(from_space_.current_capacity())) { in AllocateChunk()
1574 from_space_.Reset(); in AllocateChunk()
1575 if (!from_space_.ShrinkTo(rounded_new_capacity)) { in AllocateChunk()
1578 if (!to_space_.GrowTo(from_space_.current_capacity())) { in AllocateChunk()
1592 from_space_.EnsureCurrentCapacity(); in AllocateChunk()
1892 CHECK_EQ(from_space_.id(), kFromSpace); in AllocateChunk()
1894 from_space_.Verify(); in AllocateChunk()
2348 if (from_space_.is_committed()) { in AllocateChunk()
2349 size += from_space_.CommittedPhysicalMemory(); in AllocateChunk()