Home
last modified time | relevance | path

Searched refs:threshold_percent (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/heap/
Dheap.h694 double threshold_percent);
Dheap.cc3779 void Heap::AutomaticallyRestoreInitialHeapLimit(double threshold_percent) { in AutomaticallyRestoreInitialHeapLimit() argument
3781 initial_max_old_generation_size_ * threshold_percent; in AutomaticallyRestoreInitialHeapLimit()
/external/v8/src/api/
Dapi.cc9111 void Isolate::AutomaticallyRestoreInitialHeapLimit(double threshold_percent) { in AutomaticallyRestoreInitialHeapLimit() argument
9112 DCHECK_GT(threshold_percent, 0.0); in AutomaticallyRestoreInitialHeapLimit()
9113 DCHECK_LT(threshold_percent, 1.0); in AutomaticallyRestoreInitialHeapLimit()
9115 isolate->heap()->AutomaticallyRestoreInitialHeapLimit(threshold_percent); in AutomaticallyRestoreInitialHeapLimit()
/external/v8/include/
Dv8.h9483 void AutomaticallyRestoreInitialHeapLimit(double threshold_percent = 0.5);