Searched refs:heapSize (Results 1 - 9 of 9) sorted by relevance

/openjdk9/hotspot/test/gc/g1/
H A DTestHumongousAllocNearlyFullRegion.java41 private static final int heapSize = 224; // MB field in class:TestHumongousAllocNearlyFullRegion
47 "-Xms" + heapSize + "m",
48 "-Xmx" + heapSize + "m",
60 for (int i = 0; i < heapSize; i++) {
H A DTestHumongousAllocInitialMark.java40 private static final int heapSize = 224; // MB field in class:TestHumongousAllocInitialMark
47 "-Xms" + heapSize + "m",
48 "-Xmx" + heapSize + "m",
70 (int)((heapSize * initiatingHeapOccupancyPercent / 100.0) / heapRegionSize) + 1;
/openjdk9/hotspot/test/serviceability/tmtools/jstat/utils/
H A DGcProvoker.java63 long heapSize = Pools.getHeapCommittedSize();
64 float targetPercent = ((float) edenSize) / (heapSize);
66 throw new RuntimeException("Error in the percent calculation" + " (eden size: " + edenSize + ", heap size: " + heapSize + ", calculated eden percent: " + targetPercent + ")");
/openjdk9/hotspot/test/gc/g1/ihop/
H A DTestIHOPErgo.java93 * @param heapSize heap size
99 private static void runTest(int heapSize, int sleepTime, boolean isIhopAdaptive) throws Throwable { argument
101 System.out.println(" MaxHeapSize : " + heapSize);
105 "-Dheap.size=" + heapSize,
107 "-XX:MaxHeapSize=" + heapSize + "M",
108 "-XX:NewSize=" + heapSize / 8 + "M",
109 "-XX:MaxNewSize=" + heapSize / 8 + "M",
110 "-XX:InitialHeapSize=" + heapSize + "M",
H A DTestIHOPStatic.java104 * @param heapSize heap size for test
111 private static void runTest(int ihop, long pctToFill, long heapSize, boolean expectInitiationMessage) throws Throwable { argument
116 System.out.println(" MaxHeapSize : " + heapSize);
122 "-Dmemory.fill=" + (heapSize * 1024 * 1024 * pctToFill / 100),
123 "-XX:MaxHeapSize=" + heapSize + "M",
124 "-XX:InitialHeapSize=" + heapSize + "M"
/openjdk9/hotspot/test/gc/stress/
H A DTestStressG1Humongous.java51 int heapSize = Platform.is32bit() ? 512 : 1024;
53 run(heapSize, 4, 3, 1.1, 120);
54 run(heapSize, 16, 5, 2.1, 120);
55 run(heapSize, 32, 4, 0.6, 120);
56 run(heapSize, 1, 7, 0.6, 600);
59 private static void run(int heapSize, int regionSize, int threads, double humongousSize, int timeout) argument
65 "-Xmx" + heapSize + "m",
/openjdk9/hotspot/test/gc/arguments/
H A DTestNewSizeFlags.java80 * @param heapSize value of HeapSize option
86 long heapSize, long maxHeapSize,
92 heapSize, maxHeapSize,
101 * @param heapSize value of HeapSize option
107 long heapSize, long maxHeapSize,
113 heapSize, maxHeapSize,
123 * @param heapSize value of HeapSize option
131 long heapSize, long maxHeapSize,
134 OutputAnalyzer analyzer = startVM(options, newSize, maxNewSize, heapSize, maxHeapSize, expectedNewSize, expectedMaxNewSize);
147 long heapSize, lon
85 testNewSizeFlags(long newSize, long maxNewSize, long heapSize, long maxHeapSize, LinkedList<String> options, boolean failureExpected) argument
106 testXmnFlags(long mnValue, long heapSize, long maxHeapSize, LinkedList<String> options, boolean failureExpected) argument
130 testVMOptions(long newSize, long maxNewSize, long heapSize, long maxHeapSize, long expectedNewSize, long expectedMaxNewSize, LinkedList<String> options, boolean failureExpected) argument
145 startVM(LinkedList<String> options, long newSize, long maxNewSize, long heapSize, long maxHeapSize, long expectedNewSize, long expectedMaxNewSize) argument
[all...]
/openjdk9/hotspot/test/gc/g1/plab/
H A DTestPLABEvacuationFailure.java92 private static void runTest(int wastePct, int plabSize, int parGCThreads, int heapSize, boolean plabIsFixed) throws Throwable { argument
94 System.out.println(" Heap size : " + heapSize + "M");
109 "-XX:MaxHeapSize=" + heapSize + "m");
/openjdk9/hotspot/test/serviceability/sa/jmap-hprof/
H A DJMapHProfLargeHeapTest.java79 private static void testHProfFileFormat(String vmArgs, long heapSize, argument
83 "--add-exports=java.management/sun.management=ALL-UNNAMED", vmArgs, "JMapHProfLargeHeapProc", String.valueOf(heapSize));

Completed in 123 milliseconds