ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/SplittableRandom.java
(Generate patch)

Comparing jsr166/src/main/java/util/SplittableRandom.java (file contents):
Revision 1.21 by dl, Thu Sep 19 23:19:43 2013 UTC vs.
Revision 1.22 by dl, Fri Sep 20 09:38:07 2013 UTC

# Line 197 | Line 197 | public class SplittableRandom {
197          return z ^ (z >>> 32);
198      }
199  
200    private static long xmix64(long z) {
201        z *= 0xbf58476d1ce4e5b9L;
202        z = (z ^ (z >>> 27)) * 0x94d049bb133111ebL;
203        return z ^ (z >>> 31);
204    }
205
200      /**
201       * Returns the 32 high bits of Stafford variant 4 mix64 function as int.
202       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines