Searched defs:steal (Results 1 - 2 of 2) 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) { function in class:ParCompactionManager
190 return stack_array()->steal(queue_num, seed, t);
194 return _objarray_queues->steal(queue_num, seed, t);
197 static bool steal(int queue_num, int* seed, size_t& region) { function in class:ParCompactionManager
198 return region_array()->steal(queue_num, seed, region);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp84 steal_attempt, // number of taskqueue steal attempts
85 steal, // number of taskqueue steals enumerator in enum:TaskQueueStats::StatId
122 if (success) ++_stats[steal];
509 // at "seed") is trying to steal a task from some other queue. (It may try
510 // several queues, according to some configuration parameter.) If some steal
513 bool steal(uint queue_num, int* seed, E& t);
530 GenericTaskQueueSet<T, F>::steal(uint queue_num, int* seed, E& t) {

Completed in 1316 milliseconds