Searched refs:memoryToFill (Results 1 - 5 of 5) sorted by relevance

/openjdk10/hotspot/test/gc/g1/plab/lib/
H A DMemoryConsumer.java72 public void consume(long memoryToFill) { argument
74 while (allocated < memoryToFill) {
H A DAppPLABResize.java86 private static void iterateAllocation(long memoryToFill, long change) { argument
89 items = (int) ((memoryToFill + change * ITERATIONS) / CHUNK) + 1;
91 items = (int) (memoryToFill / CHUNK) + 1;
94 long currentMemToFill = memoryToFill;
/openjdk10/hotspot/test/gc/survivorAlignment/
H A DSurvivorAlignmentTestMain.java94 private final long memoryToFill; field in class:SurvivorAlignmentTestMain
212 * <li>memoryToFill</li>
222 long memoryToFill = parseSize(args[0]);
227 return new SurvivorAlignmentTestMain(memoryToFill, objectSize,
256 private SurvivorAlignmentTestMain(long memoryToFill, long objectSize, argument
259 this.memoryToFill = memoryToFill;
266 int arrayLength = helper.getObjectsCount(memoryToFill, this.objectSize);
271 * Allocate byte arrays to fill {@code memoryToFill} memory.
388 builder.append(String.format("Memory to fill: %d%n", memoryToFill));
[all...]
H A DAlignmentHelper.java98 * {@code memoryToFill} bytes in this heap space using objects of size
101 public int getObjectsCount(long memoryToFill, long objectSize) { argument
102 return (int) (memoryToFill / getObjectSizeInThisSpace(objectSize));
/openjdk10/hotspot/test/gc/arguments/
H A DTestMaxMinHeapFreeRatioFlags.java187 long memoryToFill = (long) (getCommitted() * (1 - minRatio + OVERLOAD))
192 while (memoryToFill > 0) {
194 memoryToFill -= CHUNK_SIZE;

Completed in 122 milliseconds