Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for FarmHashFingerprint64 (0.09 seconds)

  1. android/guava/src/com/google/common/hash/FarmHashFingerprint64.java

     *   <li>shifting (right shift must be unsigned)
     * </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;
    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)
  2. android/guava-tests/test/com/google/common/hash/FarmHashFingerprint64Test.java

    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Unit test for FarmHashFingerprint64.
     *
     * @author Kyle Maddison
     * @author Geoff Pike
     */
    @NullUnmarked
    public class FarmHashFingerprint64Test extends TestCase {
    
      private static final HashFunction HASH_FN = farmHashFingerprint64();
    
      // If this test fails, all bets are off
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/hash/HashFunctionEnum.java

     */
    
    package com.google.common.hash;
    
    import static com.google.common.hash.Hashing.adler32;
    import static com.google.common.hash.Hashing.crc32;
    import static com.google.common.hash.Hashing.farmHashFingerprint64;
    import static com.google.common.hash.Hashing.goodFastHash;
    import static com.google.common.hash.Hashing.md5;
    import static com.google.common.hash.Hashing.murmur3_128;
    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)
  4. android/guava-tests/test/com/google/common/hash/HashFunctionEnum.java

     */
    
    package com.google.common.hash;
    
    import static com.google.common.hash.Hashing.adler32;
    import static com.google.common.hash.Hashing.crc32;
    import static com.google.common.hash.Hashing.farmHashFingerprint64;
    import static com.google.common.hash.Hashing.goodFastHash;
    import static com.google.common.hash.Hashing.md5;
    import static com.google.common.hash.Hashing.murmur3_128;
    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)
Back to Top