Searched defs:queue_num (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsCompactionManager.hpp189 static bool steal(int queue_num, int* seed, oop& t) { argument
190 return stack_array()->steal(queue_num, seed, t);
193 static bool steal_objarray(int queue_num, int* seed, ObjArrayTask& t) { argument
194 return _objarray_queues->steal(queue_num, seed, t);
197 static bool steal(int queue_num, int* seed, size_t& region) { argument
198 return region_array()->steal(queue_num, seed, region);
H A DpsPromotionManager.hpp161 static bool steal_depth(int queue_num, int* seed, StarTask& t) { argument
162 return stack_array_depth()->steal(queue_num, seed, t);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp500 bool steal_1_random(uint queue_num, int* seed, E& t);
501 bool steal_best_of_2(uint queue_num, int* seed, E& t);
502 bool steal_best_of_all(uint queue_num, int* seed, E& t);
508 // The thread with queue number "queue_num" (and whose random number seed is
513 bool steal(uint queue_num, int* seed, E& t);
530 GenericTaskQueueSet<T, F>::steal(uint queue_num, int* seed, E& t) {
532 if (steal_best_of_2(queue_num, seed, t)) {
533 TASKQUEUE_STATS_ONLY(queue(queue_num)->stats.record_steal(true));
537 TASKQUEUE_STATS_ONLY(queue(queue_num)->stats.record_steal(false));
542 GenericTaskQueueSet<T, F>::steal_best_of_all(uint queue_num, in argument
566 steal_1_random(uint queue_num, int* seed, E& t) argument
582 steal_best_of_2(uint queue_num, int* seed, E& t) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp4388 uint queue_num = _par_scan_state->queue_num(); local
4391 _evacuation_failed_info_array[queue_num].register_copy_failure(old->size());
4481 G1ParScanThreadState::G1ParScanThreadState(G1CollectedHeap* g1h, uint queue_num) argument
4483 _refs(g1h->task_queue(queue_num)),
4487 _hash_seed(17), _queue_num(queue_num),
4602 _worker_id(par_scan_state->queue_num()),
4740 assert(_worker_id == _par_scan_state->queue_num(), "sanity");
4871 while (queues()->steal(pss->queue_num(), pss->hash_seed(), stolen_task)) {

Completed in 70 milliseconds