Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for rotateRight (0.14 sec)

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

        z += shiftMix(v[1]) * K1;
        x = rotateRight(z + x, 39) * K1;
        y = rotateRight(y, 33) * K1;
    
        // Decrease length to the nearest multiple of 64, and operate on 64-byte chunks.
        length = (length - 1) & ~63;
        do {
          x = rotateRight(x + y + v[0] + load64(bytes, offset + 16), 37) * K1;
          y = rotateRight(y + v[1] + load64(bytes, offset + 48), 42) * K1;
          x ^= w[1];
    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