Home
last modified time | relevance | path

Searched refs:boundedNextDouble (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/jdk/internal/util/random/
DRandomSupport.java643 public static double boundedNextDouble(RandomGenerator rng, double origin, double bound) { in boundedNextDouble() method in RandomSupport
675 public static double boundedNextDouble(RandomGenerator rng, double bound) { in boundedNextDouble() method in RandomSupport
1103 … consumer.accept(RandomSupport.boundedNextDouble(generatingGenerator, origin, bound)); in tryAdvance()
1118 consumer.accept(RandomSupport.boundedNextDouble(r, o, b)); in forEachRemaining()
1835 … consumer.accept(RandomSupport.boundedNextDouble(generatingGenerator, origin, bound)); in tryAdvance()
1850 consumer.accept(RandomSupport.boundedNextDouble(r, o, b)); in forEachRemaining()
2224 … consumer.accept(RandomSupport.boundedNextDouble(generatingGenerator, origin, bound)); in tryAdvance()
2239 consumer.accept(RandomSupport.boundedNextDouble(r, o, b)); in forEachRemaining()
/libcore/ojluni/src/main/java/java/util/random/
DRandomGenerator.java591 return RandomSupport.boundedNextDouble(this, bound); in nextDouble()
617 return RandomSupport.boundedNextDouble(this, origin, bound); in nextDouble()