Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/jdk/internal/util/random/
DRandomSupport.java410 public static long boundedNextLong(RandomGenerator rng, long origin, long bound) { in boundedNextLong() method in RandomSupport
485 public static long boundedNextLong(RandomGenerator rng, long bound) { in boundedNextLong() method in RandomSupport
1045 consumer.accept(RandomSupport.boundedNextLong(generatingGenerator, origin, bound)); in tryAdvance()
1060 consumer.accept(RandomSupport.boundedNextLong(r, o, b)); in forEachRemaining()
1787 … consumer.accept(RandomSupport.boundedNextLong(generatingGenerator, origin, bound)); in tryAdvance()
1802 consumer.accept(RandomSupport.boundedNextLong(r, o, b)); in forEachRemaining()
2178 … consumer.accept(RandomSupport.boundedNextLong(generatingGenerator, origin, bound)); in tryAdvance()
2193 consumer.accept(RandomSupport.boundedNextLong(r, o, b)); in forEachRemaining()
/libcore/ojluni/src/main/java/java/util/random/
DRandomGenerator.java714 return RandomSupport.boundedNextLong(this, bound); in nextLong()
741 return RandomSupport.boundedNextLong(this, origin, bound); in nextLong()