Searched refs:stddev (Results 1 - 25 of 32) sorted by relevance

12

/external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/
H A Dctor_double_double.pass.cpp15 // explicit normal_distribution(result_type mean = 0, result_type stddev = 1);
26 assert(d.stddev() == 1);
32 assert(d.stddev() == 1);
38 assert(d.stddev() == 5.25);
H A Dparam_ctor.pass.cpp28 assert(p.stddev() == 1);
35 assert(p.stddev() == 1);
42 assert(p.stddev() == 5);
H A Dctor_param.pass.cpp28 assert(d.stddev() == 10);
H A Dparam_assign.pass.cpp30 assert(p.stddev() == 6);
H A Dparam_copy.pass.cpp29 assert(p.stddev() == .125);
H A Deval.pass.cpp60 double x_var = sqr(d.stddev());
H A Deval_param.pass.cpp61 double x_var = sqr(p.stddev());
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dstat.c55 double rel_stddev_stats(double stddev, double avg) argument
60 pct = 100.0 * stddev/avg;
H A Dstat.h15 double rel_stddev_stats(double stddev, double avg);
/external/flac/libFLAC/include/protected/
H A Dstream_encoder.h68 FLAC__real stddev; member in struct:__anon21517::__anon21518::__anon21519
/external/fio/tools/plot/samples/
H A DMakefile17 rm -rf *.average *.stddev *.min *.max *.global
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DBuildResults.java39 double[] average, stddev; field in class:BuildResults
82 this.stddev[dim_id] = Math.sqrt(squaredDeviations / (this.count[dim_id] - 1)); // unbiased sample stdev
196 return this.stddev[this.defaultDimIndex];
208 return dimIndex < 0 ? 0 : this.stddev[dimIndex];
409 this.stddev = new double[length];
417 this.stddev[i] = stream.readDouble();
465 this.stddev = new double[length];
512 this.stddev[idx] += Double.longBitsToDouble(value);
536 buffer.append(Math.round(this.stddev[i]*1000)/1000.0);
580 stream.writeDouble(this.stddev[
[all...]
H A DConfigResults.java427 double mean=0, stddev=0, variation=0;
454 stddev += Math.pow(values[i] - mean, 2);
456 stddev = Math.sqrt((stddev / (count - 1)));
457 variation = stddev / mean;
458 return new double[] { count, mean, stddev, variation };
/external/flac/libFLAC/include/private/
H A Dwindow.h59 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev); /* 0.0 < stddev <= 0.5 */
/external/chromium_org/v8/tools/
H A Drun_perf.py235 self.stddev = ""
246 if self.stddev_regexp and self.stddev:
247 self.errors.append("Test %s should only run once since a stddev "
250 self.stddev = re.search(self.stddev_regexp, stdout, re.M).group(1)
260 "stddev": self.stddev,
314 "stddev": "",
344 stddev = match.group(3)
349 "stddev": "",
352 trace_result.traces[0]["stddev"]
[all...]
/external/chromium_org/remoting/test/
H A Dfake_socket_factory.cc29 double GetNormalRandom(double average, double stddev) { argument
33 stddev * sqrt(-2.0 * log(1.0 - base::RandDouble())) *
193 base::TimeDelta stddev) {
196 latency_stddev_ = stddev;
192 SetLatency(base::TimeDelta average, base::TimeDelta stddev) argument
H A Dfake_socket_factory.h36 // with normal distribution around |average| with the given |stddev|. Random
42 // l = NormalRand(average, stddev) + bytes_buffered / bandwidth .
46 void SetLatency(base::TimeDelta average, base::TimeDelta stddev);
/external/chromium_org/third_party/webrtc/base/
H A Dvirtualsocketserver.cc955 static double Normal(double x, double mean, double stddev) { argument
956 double a = (x - mean) * (x - mean) / (2 * stddev * stddev);
957 return exp(-a) / (stddev * sqrt(2 * PI));
970 uint32 mean, uint32 stddev, uint32 samples) {
973 if (0 == stddev) {
977 if (mean >= 4 * static_cast<double>(stddev))
978 start = mean - 4 * static_cast<double>(stddev);
979 double end = mean + 4 * static_cast<double>(stddev);
983 double y = Normal(x, mean, stddev);
969 CreateDistribution( uint32 mean, uint32 stddev, uint32 samples) argument
[all...]
H A Dvirtualsocketserver.h105 static Function* CreateDistribution(uint32 mean, uint32 stddev,
H A Dvirtualsocket_unittest.cc590 const uint32 stddev = 50; local
593 ss_->set_delay_stddev(stddev);
643 const uint32 stddev = 500; local
646 ss_->set_delay_stddev(stddev);
674 LOG(LS_VERBOSE) << "mean=" << sample_mean << " stddev=" << sample_stddev;
680 EXPECT_NEAR(stddev, sample_stddev, 0.15 * stddev);
989 const double stddev = sqrt(sum_sq_dev / f->size()); local
994 EXPECT_NEAR(kStdDev, stddev, 0.1 * kStdDev)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_cache.c269 double stddev = sqrt(mean); local
272 double z = fabs(cache->entries[i].count - mean)/stddev;
/external/flac/libFLAC/
H A Dwindow.c118 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev) argument
125 const double k = ((double)n - N2) / (stddev * N2);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_cache.c269 double stddev = sqrt(mean); local
272 double z = fabs(cache->entries[i].count - mean)/stddev;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DStats.java55 public static double stddev(int[] X) { method in class:Stats
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DScenarioData.java346 double stddev = buildResults.getDeviation(dim_id);
350 if (stddev < 0) {
352 } else if (stddev > 0) {
354 stream.print(dim.getDisplayValue(stddev));

Completed in 680 milliseconds

12