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

/external/webkit/Source/WebCore/bindings/v8/
H A DV8GCController.h82 static int workingSetEstimateMB; member in class:WebCore::V8GCController
H A DV8GCController.cpp481 int V8GCController::workingSetEstimateMB = 0; member in class:WebCore::V8GCController
514 workingSetEstimateMB = getActualMemoryUsageInMB();
534 const int highUsageDeltaMB = 128; // Delta of memory usage growth (vs. last workingSetEstimateMB) to force GC when memory usage is high.
545 if ((memoryUsageMB > lowUsageMB && memoryUsageMB > 2 * workingSetEstimateMB) || (memoryUsageMB > highUsageMB && memoryUsageMB > workingSetEstimateMB + highUsageDeltaMB))

Completed in 60 milliseconds