HomeSort by relevance Sort by last modified time
    Searched refs:secondaryHash (Results 1 - 5 of 5) sorted by null

  /libcore/luni/src/main/java/java/util/
WeakHashMap.java 73 hash = isNull ? 0 : Collections.secondaryHash(key);
456 int index = (Collections.secondaryHash(key) & 0x7FFFFFFF) % elementData.length;
479 int index = (Collections.secondaryHash(key) & 0x7FFFFFFF) % elementData.length;
593 index = (Collections.secondaryHash(key) & 0x7FFFFFFF) % elementData.length;
608 index = key == null ? 0 : (Collections.secondaryHash(key) & 0x7FFFFFFF)
671 index = (Collections.secondaryHash(key) & 0x7FFFFFFF) % elementData.length;
Hashtable.java 265 int hash = Collections.secondaryHash(key);
289 int hash = Collections.secondaryHash(key);
364 int hash = Collections.secondaryHash(key);
400 int hash = Collections.secondaryHash(key);
553 int hash = Collections.secondaryHash(key);
797 int hash = Collections.secondaryHash(key);
813 int hash = Collections.secondaryHash(key);
    [all...]
HashMap.java 300 // Doug Lea's supplemental secondaryHash function (inlined).
301 // Replace with Collections.secondaryHash when the VM is fast enough (http://b/8290590).
330 // Doug Lea's supplemental secondaryHash function (inlined).
331 // Replace with Collections.secondaryHash when the VM is fast enough (http://b/8290590).
347 // Doug Lea's supplemental secondaryHash function (non-inlined).
348 // Replace with Collections.secondaryHash when the VM is fast enough (http://b/8290590).
349 static int secondaryHash(Object key) {
404 int hash = secondaryHash(key);
467 int hash = secondaryHash(key);
635 int hash = secondaryHash(key)
    [all...]
LinkedHashMap.java 250 // Replace with Collections.secondaryHash when the VM is fast enough (http://b/8290590).
251 int hash = secondaryHash(key);
Collections.java     [all...]

Completed in 198 milliseconds