/libcore/luni/src/test/java/libcore/java/util/ |
D | SplittableRandomTest.java | 35 long seed = 0x1234567890L; in testNextBoolean() local 69 var seed = 1001; in splitInstances_areTheSame_whenTheyAreSplitWithIdenticalSource() local 83 var seed = 1001; in splitsInstances_areTheSame_whenTheyAreSplitWithIdenticalSource_boundedStream() local 105 var seed = 1001; in splitsInstances_areTheSame_whenTheyAreSplitWithIdenticalSource_unboundedStream() local 126 var seed = 1001; in splitsInstances_areTheSame_whenSourceIsIdentical() local
|
/libcore/ojluni/src/test/java/time/jdk/testlibrary/ |
D | RandomFactory.java | 41 Long seed = null; in getSystemSeed() local 72 Long seed = getSystemSeed(); in getSeed() local
|
/libcore/ojluni/src/main/java/java/util/ |
D | Random.java | 103 private final AtomicLong seed; field in Random 160 public Random(long seed) { in Random() 170 private static long initialScramble(long seed) { in initialScramble() 193 public synchronized void setSeed(long seed) { in setSeed() 225 AtomicLong seed = this.seed; in next() local
|
D | SplittableRandom.java | 173 private long seed; field in SplittableRandom 183 private SplittableRandom(long seed, long gamma) { in SplittableRandom() 267 public SplittableRandom(long seed) { in SplittableRandom()
|
/libcore/ojluni/annotations/flagged_api/java/util/random/ |
D | RandomGeneratorFactory.annotated.java | 71 public T create(long seed) { throw new RuntimeException("Stub!"); } in create() 73 public T create(byte[] seed) { throw new RuntimeException("Stub!"); } in create()
|
/libcore/ojluni/src/test/java/util/Random/ |
D | RandomStreamTest.java | 90 final long seed = System.currentTimeMillis(); in testIntStream() local 104 final long seed = System.currentTimeMillis(); in testLongStream() local 118 final long seed = System.currentTimeMillis(); in testDoubleStream() local
|
/libcore/ojluni/annotations/flagged_api/java/security/ |
D | SecureRandom.annotated.java | 34 public SecureRandom(byte[] seed) { throw new RuntimeException("Stub!"); } in SecureRandom() 62 public void setSeed(byte[] seed) { throw new RuntimeException("Stub!"); } in setSeed() 64 public void setSeed(long seed) { throw new RuntimeException("Stub!"); } in setSeed()
|
D | SecureRandomSpi.annotated.java | 37 protected abstract void engineSetSeed(byte[] seed); in engineSetSeed()
|
/libcore/ojluni/src/main/java/java/security/spec/ |
D | EllipticCurve.java | 48 private final byte[] seed; field in EllipticCurve 102 BigInteger b, byte[] seed) { in EllipticCurve()
|
/libcore/benchmarks/src/benchmarks/ |
D | XmlSerializeBenchmark.java | 34 int seed; field in XmlSerializeBenchmark 40 private void serializeRandomXml(Constructor<? extends XmlSerializer> ctor, long seed) in serializeRandomXml()
|
/libcore/ojluni/src/main/java/jdk/random/ |
D | L64X128MixRandom.java | 178 public L64X128MixRandom(long seed) { in L64X128MixRandom() 212 public L64X128MixRandom(byte[] seed) { in L64X128MixRandom()
|
D | L64X128StarStarRandom.java | 178 public L64X128StarStarRandom(long seed) { in L64X128StarStarRandom() 212 public L64X128StarStarRandom(byte[] seed) { in L64X128StarStarRandom()
|
D | Xoroshiro128PlusPlus.java | 154 public Xoroshiro128PlusPlus(long seed) { in Xoroshiro128PlusPlus() 183 public Xoroshiro128PlusPlus(byte[] seed) { in Xoroshiro128PlusPlus()
|
D | L32X64MixRandom.java | 177 public L32X64MixRandom(long seed) { in L32X64MixRandom() 211 public L32X64MixRandom(byte[] seed) { in L32X64MixRandom()
|
D | L128X128MixRandom.java | 183 public L128X128MixRandom(long seed) { in L128X128MixRandom() 219 public L128X128MixRandom(byte[] seed) { in L128X128MixRandom()
|
D | L64X256MixRandom.java | 185 public L64X256MixRandom(long seed) { in L64X256MixRandom() 221 public L64X256MixRandom(byte[] seed) { in L64X256MixRandom()
|
D | Xoshiro256PlusPlus.java | 170 public Xoshiro256PlusPlus(long seed) { in Xoshiro256PlusPlus() 201 public Xoshiro256PlusPlus(byte[] seed) { in Xoshiro256PlusPlus()
|
D | L64X1024MixRandom.java | 221 public L64X1024MixRandom(long seed) { in L64X1024MixRandom() 269 public L64X1024MixRandom(byte[] seed) { in L64X1024MixRandom()
|
D | L128X256MixRandom.java | 198 public L128X256MixRandom(long seed) { in L128X256MixRandom() 236 public L128X256MixRandom(byte[] seed) { in L128X256MixRandom()
|
D | L128X1024MixRandom.java | 230 public L128X1024MixRandom(long seed) { in L128X1024MixRandom() 280 public L128X1024MixRandom(byte[] seed) { in L128X1024MixRandom()
|
/libcore/ojluni/src/main/java/java/security/ |
D | SecureRandom.java | 271 public SecureRandom(byte[] seed) { in SecureRandom() 277 private void getDefaultPRNG(boolean setSeed, byte[] seed) { in getDefaultPRNG() 773 public void setSeed(byte[] seed) { in setSeed() 797 public void setSeed(long seed) { in setSeed()
|
D | SecureRandomSpi.java | 118 protected abstract void engineSetSeed(byte[] seed); in engineSetSeed()
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
D | RandomImpl.java | 36 protected void engineSetSeed(byte[] seed) { in engineSetSeed()
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
D | SecureRandomSpiTest.java | 52 protected void engineSetSeed(byte[] seed) {} in engineSetSeed()
|
/libcore/ojluni/src/main/java/java/util/stream/ |
D | ReduceOps.java | 69 makeRef(U seed, BiFunction<U, ? super T, U> reducer, BinaryOperator<U> combiner) { in makeRef() argument
|