Searched refs:SILVER_RATIO_64 (Results 1 – 11 of 11) sorted by relevance
/libcore/ojluni/src/main/java/jdk/random/ |
D | Xoroshiro128PlusPlus.java | 142 this.x1 = RandomSupport.SILVER_RATIO_64; in Xoroshiro128PlusPlus() 161 this(RandomSupport.mixStafford13(seed ^= RandomSupport.SILVER_RATIO_64), in Xoroshiro128PlusPlus()
|
D | L64X128MixRandom.java | 188 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L64X128MixRandom()
|
D | L64X128StarStarRandom.java | 188 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L64X128StarStarRandom()
|
D | L32X64MixRandom.java | 187 this(RandomSupport.mixMurmur32((int)((seed ^= RandomSupport.SILVER_RATIO_64) >>> 32)), in L32X64MixRandom()
|
D | L128X128MixRandom.java | 193 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L128X128MixRandom()
|
D | Xoshiro256PlusPlus.java | 177 this(RandomSupport.mixStafford13(seed ^= RandomSupport.SILVER_RATIO_64), in Xoshiro256PlusPlus()
|
D | L64X256MixRandom.java | 195 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L64X256MixRandom()
|
D | L128X256MixRandom.java | 208 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L128X256MixRandom()
|
D | L64X1024MixRandom.java | 231 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L64X1024MixRandom()
|
D | L128X1024MixRandom.java | 240 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L128X1024MixRandom()
|
/libcore/ojluni/src/main/java/jdk/internal/util/random/ |
D | RandomSupport.java | 274 result[j] = mixMurmur64(v += SILVER_RATIO_64); in convertSeedBytesToLongs() 286 result[j] = mixMurmur64(w += SILVER_RATIO_64); in convertSeedBytesToLongs() 814 public static final long SILVER_RATIO_64 = 0x6A09E667F3BCC909L; field in RandomSupport
|