Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createHashTableOrThrow (0.18 sec)

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

        this.keyOffset = 0;
        int tableSize = (size >= 2) ? ImmutableSet.chooseTableSize(size) : 0;
        this.keyHashTable =
            RegularImmutableMap.createHashTableOrThrow(alternatingKeysAndValues, size, tableSize, 0);
        Object valueHashTable =
            RegularImmutableMap.createHashTableOrThrow(alternatingKeysAndValues, size, tableSize, 1);
        this.inverse =
            new RegularImmutableBiMap<V, K>(valueHashTable, alternatingKeysAndValues, size, this);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/RegularImmutableMap.java

            }
            outI++;
          }
          return outI == n ? hashTable : new Object[] {hashTable, outI, duplicateKey};
        }
      }
    
      @CheckForNull
      static Object createHashTableOrThrow(
          @Nullable Object[] alternatingKeysAndValues, int n, int tableSize, int keyOffset) {
        Object hashTablePlus = createHashTable(alternatingKeysAndValues, n, tableSize, keyOffset);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top