Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for smearedVHash (0.08 seconds)

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

          return size;
        }
    
        @Override
        public boolean contains(@Nullable Object o) {
          int smearedHash = smearedHash(o);
          for (ValueEntry<K, V> entry = hashTable[smearedHash & mask()];
              entry != null;
              entry = entry.nextInValueBucket) {
            if (entry.matchesValue(o, smearedHash)) {
              return true;
            }
          }
          return false;
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 19.2K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/LinkedHashMultimap.java

          return size;
        }
    
        @Override
        public boolean contains(@Nullable Object o) {
          int smearedHash = smearedHash(o);
          for (ValueEntry<K, V> entry = hashTable[smearedHash & mask()];
              entry != null;
              entry = entry.nextInValueBucket) {
            if (entry.matchesValue(o, smearedHash)) {
              return true;
            }
          }
          return false;
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 20K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/HashBiMap.java

          for (int entryToRehash = 0; entryToRehash < size; entryToRehash++) {
            int keyHash = smearedHash(keys[entryToRehash]);
            int keyBucket = bucket(keyHash);
            nextInBucketKToV[entryToRehash] = hashTableKToV[keyBucket];
            hashTableKToV[keyBucket] = entryToRehash;
    
            int valueHash = smearedHash(values[entryToRehash]);
            int valueBucket = bucket(valueHash);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 37K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/HashBiMap.java

       */
      @Override
      public boolean containsValue(@Nullable Object value) {
        return seekByValue(value, smearedHash(value)) != null;
      }
    
      @Override
      public @Nullable V get(@Nullable Object key) {
        return valueOrNull(seekByKey(key, smearedHash(key)));
      }
    
      @CanIgnoreReturnValue
      @Override
      public @Nullable V put(@ParametricNullness K key, @ParametricNullness V value) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 25.7K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/collect/RegularImmutableSet.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Hashing.smearedHash;
    import static java.lang.System.arraycopy;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  6. guava/src/com/google/common/collect/RegularImmutableSet.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Hashing.smearedHash;
    import static java.lang.System.arraycopy;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/collect/CompactHashing.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Hashing.closedTableSize;
    import static com.google.common.collect.Hashing.smearedHash;
    import static java.lang.Math.max;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.primitives.Ints;
    import java.util.Arrays;
    import java.util.Objects;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  8. guava/src/com/google/common/collect/RegularImmutableMultiset.java

     */
    
    package com.google.common.collect;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.collect.Hashing.closedTableSize;
    import static com.google.common.collect.Hashing.smearedHash;
    import static com.google.common.collect.ImmutableList.asImmutableList;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/CompactHashing.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Hashing.closedTableSize;
    import static com.google.common.collect.Hashing.smearedHash;
    import static java.lang.Math.max;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.primitives.Ints;
    import java.util.Arrays;
    import java.util.Objects;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 7.1K bytes
    - Click Count (0)
Back to Top