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

1 2

  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
RandomGenerator.java 147 double nextGaussian();
RandomAdaptor.java 128 public double nextGaussian() {
129 return randomGenerator.nextGaussian();
RandomData.java 185 double nextGaussian(double mu, double sigma);
AbstractRandomGenerator.java 40 * {@link #nextGaussian} generates pairs of values and this field caches the
57 * {@link #nextGaussian}. Implemementations that do not override the
58 * default implementation of {@code nextGaussian} should call this
88 * {@code nextGaussian} should include a call to {@link #clear} in the
252 public double nextGaussian() {
BitsStreamGenerator.java 31 private double nextGaussian;
36 nextGaussian = Double.NaN;
52 * {@link #nextFloat()}, {@link #nextGaussian()}, {@link #nextInt()},
96 public double nextGaussian() {
99 if (Double.isNaN(nextGaussian)) {
106 nextGaussian = r * FastMath.sin(alpha);
109 random = nextGaussian;
110 nextGaussian = Double.NaN;
  /cts/tests/tests/keystore/src/android/keystore/cts/
CountingSecureRandom.java 87 public synchronized double nextGaussian() {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
RandomTest.java 141 * java.util.Random#nextGaussian()
144 // Test for method double java.util.Random.nextGaussian()
145 double lastNum = r.nextGaussian();
150 nextNum = r.nextGaussian();
157 assertTrue("Calling nextGaussian 100 times resulted in same number",
160 "Calling nextGaussian 100 times resulted in no number within 1 std. deviation of mean",
289 mr.nextGaussian();
310 rand.nextGaussian();
315 rand.nextGaussian();
  /libcore/ojluni/src/main/java/java/util/
Random.java 159 * #nextGaussian}.
543 * The general contract of {@code nextGaussian} is that one
548 * <p>The method {@code nextGaussian} is implemented by class
554 * public double nextGaussian() {
583 synchronized public double nextGaussian() {
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 122 * nextGaussian method by providing a holder for the second of a
444 public double nextGaussian() {
445 // Use nextLocalGaussian instead of nextGaussian field
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.0.CR3/
netty-handler-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.3.Final/
netty-handler-4.1.3.Final.jar 
  /external/libphonenumber/demo/war/WEB-INF/lib/
commons-lang-2.6.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
commons-lang-2.6.jar 
  /prebuilts/tools/common/m2/repository/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 
  /prebuilts/tools/common/m2/repository/commons-lang/commons-lang/2.6/
commons-lang-2.6.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.6.Final/
netty-handler-4.1.6.Final.jar 
  /external/guice/extensions/struts2/lib/
xwork-core-2.2.1.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/current/
core.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 

Completed in 689 milliseconds

1 2