Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ws (0.11 sec)

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

        c = rotateRight(a, 37);
        a += load64(bytes, offset + length - 24);
        c += rotateRight(a, 7);
        a += load64(bytes, offset + length - 16);
        long wf = a + z;
        long ws = b + rotateRight(a, 31) + c;
        long r = shiftMix((vf + ws) * K2 + (wf + vs) * K0);
        return shiftMix(r * K0 + vs) * K2;
      }
    
      @VisibleForTesting
      static long murmurHash64WithSeed(byte[] bytes, int offset, int length, long seed) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Dec 28 17:50:25 GMT 2021
    - 6.5K bytes
    - Viewed (0)
Back to top