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

/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DPlatformBridge.cpp202 int PlatformBridge::highUsageDeltaMB() function in class:WebCore::PlatformBridge
/external/webkit/Source/WebCore/bindings/v8/
H A DV8GCController.cpp534 const int highUsageDeltaMB = 128; // Delta of memory usage growth (vs. last workingSetEstimateMB) to force GC when memory usage is high. local
539 static const int highUsageDeltaMB = PlatformBridge::highUsageDeltaMB();
545 if ((memoryUsageMB > lowUsageMB && memoryUsageMB > 2 * workingSetEstimateMB) || (memoryUsageMB > highUsageMB && memoryUsageMB > workingSetEstimateMB + highUsageDeltaMB))

Completed in 57 milliseconds