HomeSort by relevance Sort by last modified time
    Searched defs:highUsageDeltaMB (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebKit/android/WebCoreSupport/
PlatformBridge.cpp 218 int PlatformBridge::highUsageDeltaMB()
220 return MemoryUsage::highUsageDeltaMb();
  /external/webkit/Source/WebCore/bindings/v8/
V8GCController.cpp 541 const int highUsageDeltaMB = 128; // Delta of memory usage growth (vs. last workingSetEstimateMB) to force GC when memory usage is high.
546 static const int highUsageDeltaMB = PlatformBridge::highUsageDeltaMB();
552 if ((memoryUsageMB > lowUsageMB && memoryUsageMB > 2 * workingSetEstimateMB) || (memoryUsageMB > highUsageMB && memoryUsageMB > workingSetEstimateMB + highUsageDeltaMB))

Completed in 42 milliseconds