HomeSort by relevance Sort by last modified time
    Searched defs:nextLong (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
RandomGenerator.java 102 long nextLong();
RandomAdaptor.java 172 public long nextLong() {
173 return randomGenerator.nextLong();
RandomData.java 83 long nextLong(long lower, long upper);
132 * <code>nextLong</code> should be used instead of this method.</p>
AbstractRandomGenerator.java 178 public long nextLong() {
BitsStreamGenerator.java 53 * {@link #next(int)} and {@link #nextLong()}.</p>
147 public long nextLong() {
RandomDataImpl.java 219 public long nextLong(long lower, long upper) {
    [all...]
  /libcore/ojluni/src/main/java/java/util/
PrimitiveIterator.java 168 long nextLong();
180 * action.accept(nextLong());
189 action.accept(nextLong());
196 * {@link #nextLong()}, and returns that boxed result.
201 Tripwire.trip(getClass(), "{0} calling PrimitiveIterator.OfLong.nextLong()");
202 return nextLong();
274 Tripwire.trip(getClass(), "{0} calling PrimitiveIterator.OfDouble.nextLong()");
Spliterators.java     [all...]
SplittableRandom.java 106 * Methods nextLong, nextInt, and derivatives do not return the
109 * For nextLong, the mix64 function is based on David Stafford's
257 * The form of nextLong used by LongStream Spliterators. If
259 * nextLong, else as bounded form.
270 * nextLong().
276 * when the implicit nextLong() bound (2<sup>64</sup>) is not
349 double r = (nextLong() >>> 11) * DOUBLE_UNIT;
398 return new SplittableRandom(nextLong(), mixGamma(nextSeed()));
458 public long nextLong() {
471 public long nextLong(long bound)
    [all...]
Random.java 236 * The form of nextLong used by LongStream Spliterators. If
238 * nextLong, else as bounded form.
245 long r = nextLong();
253 u = nextLong() >>> 1) // retry
259 r = nextLong();
406 * contract of {@code nextLong} is that one {@code long} value is
409 * <p>The method {@code nextLong} is implemented by class {@code Random}
412 * public long nextLong() {
422 public long nextLong() {
738 * of calling the method {@link #nextLong()}
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
CountingSecureRandom.java 102 public long nextLong() {
  /frameworks/base/core/java/com/android/internal/util/
ProcFileReader.java 161 public long nextLong() throws IOException {
222 final long value = nextLong();
  /libcore/luni/src/test/java/libcore/java/util/
PrimitiveIteratorTest.java 61 public long nextLong() {
  /libcore/ojluni/src/test/java/nio/file/attribute/
FileTimeTest.java 117 for (int i=0; i<100; i++) { to(rand.nextLong(), unit); }
126 long value = rand.nextLong();
156 long v = rand.nextLong();
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
LongStreamTestScenario.java 71 b.accept(seqIter.nextLong());
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
FindFirstOpTest.java 112 assertEquals(i.nextLong(), r.getAsLong());
MatchOpTest.java 313 public long nextLong() {
317 return i.nextLong();
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
LongStreamTestScenario.java 74 b.accept(seqIter.nextLong());
  /libcore/dalvik/src/main/java/dalvik/system/
EmulatedStackFrame.java 396 writer.putNextLong(reader.nextLong());
482 public long nextLong() {
  /frameworks/base/core/tests/coretests/src/android/content/pm/
VerifierDeviceIdentityTest.java 143 public void setNextLong(long nextLong) {
144 mNextLong = nextLong;
148 public long nextLong() {
  /frameworks/base/tests/WindowAnimationJank/src/android/windowanimationjank/
ElementLayoutActivity.java 121 chronometer.setBase(mRandom.nextLong());
  /packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/
DiagnosticJson.java 129 mTimestamp.write(jsonReader.nextLong());
  /libcore/benchmarks/src/benchmarks/regression/
ParseBenchmark.java 165 reader.nextLong();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
RandomTest.java 209 * java.util.Random#nextLong()
212 // Test for method long java.util.Random.nextLong()
213 long lastNum = r.nextLong();
217 nextNum = r.nextLong();
222 assertTrue("Calling nextLong 100 times resulted in same number",
244 random1Values[i] = random1.nextLong();
245 random2Values[i] = random2.nextLong();
246 random3Values[i] = random3.nextLong();
256 random3Values[i] = random3.nextLong();
295 mr.nextLong();
    [all...]
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
SpinedBufferTest.java 278 list2.add(it.nextLong());

Completed in 876 milliseconds

1 2 3 4 5 6 7