Searched refs:_n_threads (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1Refine.cpp32 _threads(NULL), _n_threads(0),
53 _n_threads = _n_worker_threads + 1;
57 _threads = NEW_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _n_threads, mtGC);
62 for (int i = _n_threads - 1; i >= 0; i--) {
85 for (int i = 0; i < _n_threads; i++) {
94 for (int i = 0; i < _n_threads; i++) {
102 for (int i = 0; i < _n_threads; i++) {
111 for (int i = 0; i < _n_threads; i++) {
124 for (int i = 0; i < _n_threads; ++i) {
H A DconcurrentG1Refine.hpp41 int _n_threads; member in class:ConcurrentG1Refine
96 int total_thread_num() const { return _n_threads; }
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.cpp143 _n_threads(n_threads),
152 assert(_offered_termination <= _n_threads, "Invariant");
157 assert(_offered_termination <= _n_threads, "Invariant");
163 assert(_n_threads > 0, "Initialization is incorrect");
164 assert(_offered_termination < _n_threads, "Invariant");
188 assert(_offered_termination <= _n_threads, "Invariant");
190 if (_offered_termination == _n_threads) {
244 assert(_offered_termination < _n_threads, "Invariant");
263 assert(_offered_termination == _n_threads,
278 _n_threads
[all...]
H A Dworkgroup.hpp408 // _n_threads is used to determine when a sub task is done.
413 uint _n_threads; member in class:SubTasksDone
433 uint n_threads() { return _n_threads; }
461 // _n_threads is used to determine when a sub task is done.
462 // See comments on SubTasksDone::_n_threads
463 uint _n_threads; // Total number of parallel threads. member in class:SequentialSubTasksDone
484 uint n_threads() { return _n_threads; }
485 void set_n_threads(uint t) { _n_threads = t; }
H A Dworkgroup.cpp424 _n_tasks(n), _n_threads(1), _tasks(NULL) {
435 assert(_claimed == 0 || _threads_completed == _n_threads,
437 _n_threads = (t == 0 ? 1 : t);
475 if (observed+1 == (jint)_n_threads) clear();
487 _n_threads = _n_completed = 0;
491 return _n_threads > 0;
517 if (complete+1 == _n_threads) {
H A Dtaskqueue.hpp626 int _n_threads; member in class:ParallelTaskTerminator

Completed in 38 milliseconds