Searched refs:_hash_seed (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.hpp97 int _hash_seed; member in class:ParScanThreadState
163 int* hash_seed() { return &_hash_seed; }
H A DparNewGeneration.cpp93 _hash_seed = 17; // Might want to take time-based random value.
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.hpp1818 int _hash_seed;
1952 int* hash_seed() { return &_hash_seed; }
H A DconcurrentMark.hpp1012 int _hash_seed; member in class:CMTask
H A DconcurrentMark.cpp4162 if (_cm->try_stealing(_task_id, &_hash_seed, obj)) {
4346 _nextMarkBitMap(NULL), _hash_seed(17),
H A Dg1CollectedHeap.cpp4487 _hash_seed(17), _queue_num(queue_num),
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp564 int* _hash_seed; member in class:CMSCollector
744 int* hash_seed(int i) { return &_hash_seed[i]; }
H A DconcurrentMarkSweepGeneration.cpp698 _hash_seed = NEW_C_HEAP_ARRAY(int, num_queues, mtGC);
699 if (_hash_seed == NULL) {
700 warning("_hash_seed array allocation failure");
715 _hash_seed[i] = 17; // copied from ParNew

Completed in 88 milliseconds