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

  /libcore/luni/src/main/java/java/util/
HashMap.java 607 int nextHighBit = n.hash & oldCapacity;
608 if (nextHighBit != highBit) {
610 newTable[j | nextHighBit] = n;
614 highBit = nextHighBit;
    [all...]
Hashtable.java 525 int nextHighBit = n.hash & oldCapacity;
526 if (nextHighBit != highBit) {
528 newTable[j | nextHighBit] = n;
532 highBit = nextHighBit;
    [all...]

Completed in 2768 milliseconds