Searched defs:randomHashSeed (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DHashing.java246 public static int randomHashSeed(Object instance) { method in class:Hashing
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentHashMap.java228 private transient final int hashSeed = randomHashSeed(this);
230 private static int randomHashSeed(ConcurrentHashMap instance) { method in class:ConcurrentHashMap
232 return sun.misc.Hashing.randomHashSeed(instance);
1558 UNSAFE.putIntVolatile(this, HASHSEED_OFFSET, randomHashSeed(this));

Completed in 115 milliseconds