Searched defs:old_generation_allocation_limit_ (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/heap/
H A Dheap.h1843 if (old_generation_allocation_limit_ <= PromotedTotalSize()) return 0;
1844 return old_generation_allocation_limit_ -
1855 if (old_generation_allocation_limit_ >= PromotedTotalSize()) return false;
1856 uint64_t overshoot = PromotedTotalSize() - old_generation_allocation_limit_;
1860 Min(Max(old_generation_allocation_limit_ / 2, kMarginForSmallHeaps),
1861 (max_old_generation_size_ - old_generation_allocation_limit_) / 2);
1898 return old_generation_allocation_limit_;
2232 size_t old_generation_allocation_limit_; member in class:v8::internal::GarbageCollectionReason::Heap

Completed in 73 milliseconds