Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newThreshold (0.07 sec)

  1. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

        int[] oldTable = table;
        int oldCapacity = oldTable.length;
        if (oldCapacity >= MAXIMUM_CAPACITY) {
          threshold = Integer.MAX_VALUE;
          return;
        }
        int newThreshold = 1 + (int) (newCapacity * loadFactor);
        int[] newTable = newTable(newCapacity);
        long[] entries = this.entries;
    
        int mask = newTable.length - 1;
        for (int i = 0; i < size; i++) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
Back to top