Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dheap.h1843 if (old_generation_allocation_limit_ <= PromotedTotalSize()) return 0; in OldGenerationSpaceAvailable()
1844 return old_generation_allocation_limit_ - in OldGenerationSpaceAvailable()
1855 if (old_generation_allocation_limit_ >= PromotedTotalSize()) return false; in AllocationLimitOvershotByLargeMargin()
1856 uint64_t overshoot = PromotedTotalSize() - old_generation_allocation_limit_; in AllocationLimitOvershotByLargeMargin()
1860 Min(Max(old_generation_allocation_limit_ / 2, kMarginForSmallHeaps), in AllocationLimitOvershotByLargeMargin()
1861 (max_old_generation_size_ - old_generation_allocation_limit_) / 2); in AllocationLimitOvershotByLargeMargin()
1898 return old_generation_allocation_limit_; in old_generation_allocation_limit()
2232 size_t old_generation_allocation_limit_; variable
Dheap.cc119 old_generation_allocation_limit_(initial_old_generation_size_), in Heap()
2079 old_generation_allocation_limit_ = in ConfigureInitialOldGenerationSize()
2082 static_cast<double>(old_generation_allocation_limit_) * in ConfigureInitialOldGenerationSize()
4598 old_generation_allocation_limit_); in ReportHeapStatistics()
5144 old_generation_allocation_limit_ = initial_old_generation_size_; in ConfigureHeap()
5354 old_generation_allocation_limit_ = in SetOldGenerationAllocationLimit()
5360 old_gen_size / KB, old_generation_allocation_limit_ / KB, factor); in SetOldGenerationAllocationLimit()
5369 if (limit < old_generation_allocation_limit_) { in DampenOldGenerationAllocationLimit()
5375 old_gen_size / KB, old_generation_allocation_limit_ / KB, limit / KB, in DampenOldGenerationAllocationLimit()
5378 old_generation_allocation_limit_ = limit; in DampenOldGenerationAllocationLimit()