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

/openjdk9/hotspot/src/share/vm/gc/g1/
H A DcollectionSetChooser.cpp166 uint n_regions,
171 uint aligned_n_regions = (n_regions + chunk_size - 1) / chunk_size * chunk_size;
255 uint CollectionSetChooser::calculate_parallel_work_chunk_size(uint n_workers, uint n_regions) const {
258 const uint min_chunk_size = MAX2(n_regions / n_workers, 1U);
259 return MAX2(n_regions / (n_workers * overpartition_factor), min_chunk_size);
262 void CollectionSetChooser::rebuild(WorkGang* workers, uint n_regions) { argument
267 uint chunk_size = calculate_parallel_work_chunk_size(n_workers, n_regions);
268 prepare_for_par_region_addition(n_workers, n_regions, chunk_size);
165 prepare_for_par_region_addition(uint n_threads, uint n_regions, uint chunk_size) argument
H A DcollectionSetChooser.hpp70 uint calculate_parallel_work_chunk_size(uint n_workers, uint n_regions) const;
123 // n_regions is the number of regions, chunk_size the chunk size.
124 void prepare_for_par_region_addition(uint n_threads, uint n_regions, uint chunk_size);
138 void rebuild(WorkGang* workers, uint n_regions);
H A DheapRegionManager.cpp337 const uint n_regions = hrclaimer->n_regions(); local
338 for (uint count = 0; count < n_regions; count++) {
339 const uint index = (start_index + count) % n_regions;
340 assert(index < n_regions, "sanity");
H A DheapRegionManager.hpp273 inline uint n_regions() const { function in class:HeapRegionClaimer
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/g1/
H A DG1CollectedHeap.java86 public long n_regions() { method in class:G1CollectedHeap
/openjdk9/hotspot/src/share/vm/memory/
H A DmetaspaceShared.hpp155 n_regions = od + 1 // total number of regions enumerator in enum:MetaspaceShared::__anon458
H A Dfilemap.hpp125 } _space[MetaspaceShared::n_regions];
H A Dfilemap.cpp979 for (int i = 0; i < MetaspaceShared::n_regions; i++) {
1005 for (int i = 0; i < MetaspaceShared::n_regions; i++) {
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/
H A DHeapSummary.java121 printG1Space("G1 Heap:", g1h.n_regions(),

Completed in 127 milliseconds