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

1 2

  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
GaussianRandomGenerator.java 23 * RandomGenerator#nextGaussian} method.</p>
44 return generator.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;
RandomGenerator.java 147 double nextGaussian();
RandomData.java 185 double nextGaussian(double mu, double sigma);
RandomAdaptor.java 128 public double nextGaussian() {
129 return randomGenerator.nextGaussian();
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() {
RandomDataImpl.java 407 final double n = nextGaussian(0d, 1d);
461 public double nextGaussian(double mu, double sigma) {
465 return sigma * getRan().nextGaussian() + mu;
    [all...]
ValueServer.java 382 return randomData.nextGaussian(mu, sigma);
EmpiricalDistributionImpl.java 387 return randomData.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();
  /cts/tests/tests/keystore/src/android/keystore/cts/
CountingSecureRandom.java 87 public synchronized double nextGaussian() {
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlSanitizerFuzzerTest.java 86 double d = Math.abs(rnd.nextGaussian()) / 3.0d;
91 d = Math.abs(rnd.nextGaussian()) / 3.0d;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
NormalDistributionImpl.java 240 return randomData.nextGaussian(mean, standardDeviation);
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalRandomTest.java 115 * Repeated calls to nextGaussian produce at least two distinct results
118 double f = ThreadLocalRandom.current().nextGaussian();
120 while (i < NCALLS && ThreadLocalRandom.current().nextGaussian() == f)
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
RuntimeWorker.java 68 random.nextGaussian());
  /frameworks/base/services/core/java/com/android/server/location/
LocationFudger.java 302 return mRandom.nextGaussian() * mStandardDeviationInMeters;
  /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...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 533 double dispersion = mRandom.nextGaussian() * 0.2;
  /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...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 842 (float) sRNG.nextGaussian(), (float) sRNG.nextGaussian(),
    [all...]
  /prebuilts/tools/common/m2/repository/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 
  /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 
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.6.Final/
netty-handler-4.1.6.Final.jar 
  /external/libphonenumber/demo/war/WEB-INF/lib/
commons-lang-2.6.jar 

Completed in 2827 milliseconds

1 2