Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for rehashIfNecessary (0.07 sec)

  1. guava/src/com/google/common/collect/HashBiMap.java

        }
        if (oldEntryForValue != null) {
          oldEntryForValue.prevInKeyInsertionOrder = null;
          oldEntryForValue.nextInKeyInsertionOrder = null;
        }
        rehashIfNecessary();
        return Maps.keyOrNull(oldEntryForValue);
      }
    
      private void rehashIfNecessary() {
        @Nullable BiEntry<K, V>[] oldKToV = hashTableKToV;
        if (Hashing.needsResizing(size, oldKToV.length, LOAD_FACTOR)) {
          int newTableSize = oldKToV.length * 2;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/LinkedHashMultimap.java

          succeedsInMultimap(newEntry, multimapHeaderEntry);
          hashTable[bucket] = newEntry;
          size++;
          modCount++;
          rehashIfNecessary();
          return true;
        }
    
        private void rehashIfNecessary() {
          if (Hashing.needsResizing(size, hashTable.length, VALUE_SET_LOAD_FACTOR)) {
            @SuppressWarnings("unchecked")
            ValueEntry<K, V>[] hashTable =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top