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

  /external/guava/guava/src/com/google/common/hash/
BloomFilter.java 44 * A strategy to translate T instances, to {@code numHashFunctions} bit indexes.
48 * Sets {@code numHashFunctions} bits of the given bit array, by hashing a user element.
50 <T> void put(T object, Funnel<? super T> funnel, int numHashFunctions, BitArray bits);
53 * Queries {@code numHashFunctions} bits of the given bit array, by hashing a user element;
57 T object, Funnel<? super T> funnel, int numHashFunctions, BitArray bits);
64 private final int numHashFunctions;
70 * The strategy we employ to map an element T to {@code numHashFunctions} bit indexes.
77 private BloomFilter(BitArray bits, int numHashFunctions, Funnel<T> funnel,
79 Preconditions.checkArgument(numHashFunctions > 0, "numHashFunctions zero or negative")
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 20 milliseconds