Home
last modified time | relevance | path

Searched refs:SILVER_RATIO_64 (Results 1 – 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/jdk/random/
DXoroshiro128PlusPlus.java142 this.x1 = RandomSupport.SILVER_RATIO_64; in Xoroshiro128PlusPlus()
161 this(RandomSupport.mixStafford13(seed ^= RandomSupport.SILVER_RATIO_64), in Xoroshiro128PlusPlus()
DL64X128MixRandom.java188 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L64X128MixRandom()
DL64X128StarStarRandom.java188 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L64X128StarStarRandom()
DL32X64MixRandom.java187 this(RandomSupport.mixMurmur32((int)((seed ^= RandomSupport.SILVER_RATIO_64) >>> 32)), in L32X64MixRandom()
DL128X128MixRandom.java193 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L128X128MixRandom()
DXoshiro256PlusPlus.java177 this(RandomSupport.mixStafford13(seed ^= RandomSupport.SILVER_RATIO_64), in Xoshiro256PlusPlus()
DL64X256MixRandom.java195 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L64X256MixRandom()
DL128X256MixRandom.java208 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L128X256MixRandom()
DL64X1024MixRandom.java231 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L64X1024MixRandom()
DL128X1024MixRandom.java240 this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64), in L128X1024MixRandom()
/libcore/ojluni/src/main/java/jdk/internal/util/random/
DRandomSupport.java274 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