- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for FARMHASH_FINGERPRINT_64 (0.21 seconds)
-
guava-tests/test/com/google/common/hash/HashFunctionEnum.java
MURMUR3_128(murmur3_128()), MURMUR3_32(murmur3_32()), MURMUR3_32_FIXED(murmur3_32_fixed()), SHA1(sha1()), SHA256(sha256()), SHA384(sha384()), SHA512(sha512()), SIP_HASH24(sipHash24()), FARMHASH_FINGERPRINT_64(farmHashFingerprint64()), // Hash functions found in //javatests for comparing against current implementation of CityHash. // These can probably be removed sooner or later. ;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 2.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/hash/HashFunctionEnum.java
MURMUR3_128(murmur3_128()), MURMUR3_32(murmur3_32()), MURMUR3_32_FIXED(murmur3_32_fixed()), SHA1(sha1()), SHA256(sha256()), SHA384(sha384()), SHA512(sha512()), SIP_HASH24(sipHash24()), FARMHASH_FINGERPRINT_64(farmHashFingerprint64()), // Hash functions found in //javatests for comparing against current implementation of CityHash. // These can probably be removed sooner or later. ;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 2.4K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/FarmHashFingerprint64.java
* </ul> * * @author Kyle Maddison * @author Geoff Pike */ 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;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Aug 11 19:31:30 GMT 2025 - 7.6K bytes - Click Count (0) -
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
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jul 17 15:26:41 GMT 2025 - 29.8K bytes - Click Count (0)