Searched refs:n_threads (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1Refine.cpp118 int n_threads = (G1ConcRefinementThreads > 0) ? G1ConcRefinementThreads local
120 return MAX2<int>(n_threads, 1);
H A DcollectionSetChooser.cpp163 uint n_threads = (uint) ParallelGCThreads; local
171 n_threads = MAX2(G1CollectedHeap::heap()->workers()->active_workers(),
174 uint max_waste = n_threads * chunk_size;
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparCardTableModRefBS.cpp41 int n_threads) {
42 assert(n_threads > 0, "Error: expected n_threads > 0");
43 assert((n_threads == 1 && ParallelGCThreads == 0) ||
44 n_threads <= (int)ParallelGCThreads,
46 assert(!Thread::current()->is_VM_thread() || (n_threads == 1), "There is only 1 VM thread");
49 n_threads == (int)ParallelGCThreads,
59 uint n_strides = n_threads * ParGCStridesPerThread;
63 pst->set_n_threads(n_threads);
38 non_clean_card_iterate_parallel_work(Space* sp, MemRegion mr, OopsInGenClosure* cl, CardTableRS* ct, int n_threads) argument
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.cpp142 ParallelTaskTerminator(int n_threads, TaskQueueSetSuper* queue_set) : argument
143 _n_threads(n_threads),
276 void ParallelTaskTerminator::reset_for_reuse(int n_threads) { argument
278 _n_threads = n_threads;
H A Dworkgroup.hpp433 uint n_threads() { return _n_threads; } function in class:SubTasksDone
484 uint n_threads() { return _n_threads; } function in class:SequentialSubTasksDone
H A Dtaskqueue.hpp643 // "n_threads" is the number of threads to be terminated. "queue_set" is a
645 ParallelTaskTerminator(int n_threads, TaskQueueSetSuper* queue_set);
667 void reset_for_reuse(int n_threads);
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.cpp494 int n_threads = SharedHeap::heap()->n_par_threads(); local
495 bool is_par = n_threads > 0;
500 non_clean_card_iterate_parallel_work(sp, mr, cl, ct, n_threads);
H A DsharedHeap.cpp82 return _process_strong_tasks->n_threads();
H A DcardTableModRefBS.hpp192 int n_threads);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.hpp311 void initialize_sequential_subtasks_for_rescan(int n_threads);
312 void initialize_sequential_subtasks_for_marking(int n_threads,
H A DcompactibleFreeListSpace.cpp2976 initialize_sequential_subtasks_for_rescan(int n_threads) {
2978 assert(n_threads > 0, "Unexpected n_threads argument");
2990 pst->set_n_threads(n_threads);
2998 initialize_sequential_subtasks_for_marking(int n_threads,
3001 assert(n_threads > 0, "Unexpected n_threads argument");
3032 pst->set_n_threads(n_threads);
H A DconcurrentMarkSweepGeneration.cpp3759 // "n_threads" is the number of threads to be terminated.
3763 CMSConcMarkingTerminator(int n_threads, TaskQueueSetSuper* queue_set, CMSCollector* collector) :
3764 ParallelTaskTerminator(n_threads, queue_set),
5552 initialize_sequential_subtasks_for_young_gen_rescan(int n_threads) {
5553 assert(n_threads > 0, "Unexpected n_threads argument");
5565 pst->set_n_threads(n_threads);
5571 merge_survivor_plab_arrays(dng->from(), n_threads);
5582 pst->set_n_threads(n_threads);
5595 pst->set_n_threads(n_threads);
[all...]

Completed in 280 milliseconds