Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FARMHASH_FINGERPRINT_64 (0.26 sec)

  1. android/guava-tests/test/com/google/common/hash/HashFunctionEnum.java

      MURMUR3_32_FIXED(Hashing.murmur3_32_fixed()),
      SHA1(Hashing.sha1()),
      SHA256(Hashing.sha256()),
      SHA384(Hashing.sha384()),
      SHA512(Hashing.sha512()),
      SIP_HASH24(Hashing.sipHash24()),
      FARMHASH_FINGERPRINT_64(Hashing.farmHashFingerprint64()),
    
      // Hash functions found in //javatests for comparing against current implementation of CityHash.
      // These can probably be removed sooner or later.
      ;
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 08 13:56:22 GMT 2021
    - 1.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/hash/HashFunctionEnum.java

      MURMUR3_32_FIXED(Hashing.murmur3_32_fixed()),
      SHA1(Hashing.sha1()),
      SHA256(Hashing.sha256()),
      SHA384(Hashing.sha384()),
      SHA512(Hashing.sha512()),
      SIP_HASH24(Hashing.sipHash24()),
      FARMHASH_FINGERPRINT_64(Hashing.farmHashFingerprint64()),
    
      // Hash functions found in //javatests for comparing against current implementation of CityHash.
      // These can probably be removed sooner or later.
      ;
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 08 13:56:22 GMT 2021
    - 1.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/FarmHashFingerprint64.java

     * </ul>
     *
     * @author Kyle Maddison
     * @author Geoff Pike
     */
    @ElementTypesAreNonnullByDefault
    final class FarmHashFingerprint64 extends AbstractNonStreamingHashFunction {
      static final HashFunction FARMHASH_FINGERPRINT_64 = new FarmHashFingerprint64();
    
      // Some primes between 2^63 and 2^64 for various uses.
      private static final long K0 = 0xc3a5c85c97cb3127L;
      private static final long K1 = 0xb492b66fbe98f273L;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 01 22:39:48 GMT 2022
    - 7.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/Hashing.java

       * <a href="https://en.wikipedia.org/wiki/Hash_function">hash function</a>.
       *
       * @since 20.0
       */
      public static HashFunction farmHashFingerprint64() {
        return FarmHashFingerprint64.FARMHASH_FINGERPRINT_64;
      }
    
      /**
       * Returns a hash function implementing the Fingerprint2011 hashing function (64 hash bits).
       *
       * <p>This is designed for generating persistent fingerprints of strings. It isn't
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 09 00:37:15 GMT 2024
    - 29.2K bytes
    - Viewed (0)
Back to top