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

1 2

  /frameworks/native/libs/cpustats/
CentralTendencyStatistics.cpp 70 double CentralTendencyStatistics::stddev() const function in class:CentralTendencyStatistics
72 double stddev; local
74 stddev = sqrt(variance());
75 mStddev = stddev;
78 stddev = mStddev;
80 return stddev;
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/
ctor_double_double.pass.cpp 15 // 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);
param_ctor.pass.cpp 28 assert(p.stddev() == 1);
35 assert(p.stddev() == 1);
42 assert(p.stddev() == 5);
ctor_param.pass.cpp 28 assert(d.stddev() == 10);
param_assign.pass.cpp 30 assert(p.stddev() == 6);
param_copy.pass.cpp 29 assert(p.stddev() == .125);
eval.pass.cpp 60 double x_var = sqr(d.stddev());
eval_param.pass.cpp 61 double x_var = sqr(p.stddev());
  /frameworks/native/include/cpustats/
CentralTendencyStatistics.h 49 double stddev() const;
  /external/flac/libFLAC/include/protected/
stream_encoder.h 68 FLAC__real stddev; member in struct:__anon8130::__anon8131::__anon8132
  /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/
BuildResults.java 39 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[i])
    [all...]
ConfigResults.java 427 double mean=0, stddev=0, variation=0; local
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/
window.h 59 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev); /* 0.0 < stddev <= 0.5 */
  /external/flac/libFLAC/
window.c 118 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev)
125 const double k = ((double)n - N2) / (stddev * N2);
stream_encoder.c     [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
Stats.java 55 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/
ScenarioData.java 346 double stddev = buildResults.getDeviation(dim_id); local
350 if (stddev < 0) {
352 } else if (stddev > 0) {
354 stream.print(dim.getDisplayValue(stddev));
  /frameworks/av/services/audioflinger/
FastMixer.cpp     [all...]
Threads.cpp 227 double stddev = mWcStats.stddev(); local
231 double stddevCycles = mHzStats.stddev();
239 " us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n"
240 " %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f\n"
241 " MHz: mean=%.1f, stddev=%.1f, min=%.1f max=%.1f",
245 stddev * .001,
249 stddev / perLoop100,
    [all...]
  /external/harfbuzz_ng/test/shaping/
hb_test_tools.py 189 def stddev (self): member in class:Stats
200 return (self.mean () - population.mean ()) / population.stddev ()
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 
  /frameworks/wilhelm/tests/examples/
slesTestDecodeAac.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
random.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
random.h     [all...]

Completed in 674 milliseconds

1 2