Home
last modified time | relevance | path

Searched refs:monitors_used (Results 1 – 8 of 8) sorted by relevance

/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/runtime/
H A Dsynchronizer.cpp1088 size_t monitors_used = list->count(); in monitors_used_above_threshold() local
1089 if (monitors_used == 0) { // empty list is easy in monitors_used_above_threshold()
1105 size_t monitor_usage = (monitors_used * 100LL) / ceiling; in monitors_used_above_threshold()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/runtime/
H A Dsynchronizer.cpp1154 size_t monitors_used = list->count(); in monitors_used_above_threshold() local
1155 size_t monitor_usage = (monitors_used * 100LL) / ceiling; in monitors_used_above_threshold()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/runtime/
H A Dsynchronizer.cpp952 int monitors_used = gMonitorPopulation - gMonitorFreeCount; in monitors_used_above_threshold() local
953 int monitor_usage = (monitors_used * 100LL) / gMonitorPopulation; in monitors_used_above_threshold()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/runtime/
H A Dsynchronizer.cpp964 int monitors_used = gMonitorPopulation - gMonitorFreeCount; in monitors_used_above_threshold() local
965 int monitor_usage = (monitors_used * 100LL) / gMonitorPopulation; in monitors_used_above_threshold()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/runtime/
H A Dsynchronizer.cpp964 int monitors_used = gMonitorPopulation - gMonitorFreeCount; in monitors_used_above_threshold() local
965 int monitor_usage = (monitors_used * 100LL) / gMonitorPopulation; in monitors_used_above_threshold()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/runtime/
H A Dsynchronizer.cpp934 int monitors_used = gMonitorPopulation - gMonitorFreeCount; in monitors_used_above_threshold() local
935 int monitor_usage = (monitors_used * 100LL) / gMonitorPopulation; in monitors_used_above_threshold()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/runtime/
H A Dsynchronizer.cpp910 int monitors_used = g_om_population - g_om_free_count; in monitors_used_above_threshold() local
911 int monitor_usage = (monitors_used * 100LL) / g_om_population; in monitors_used_above_threshold()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/runtime/
H A Dsynchronizer.cpp1306 int monitors_used = population - Atomic::load(&om_list_globals._free_count) - in monitors_used_above_threshold() local
1308 int monitor_usage = (monitors_used * 100LL) / population; in monitors_used_above_threshold()