HomeSort by relevance Sort by last modified time
    Searched refs:Variance (Results 1 - 4 of 4) sorted by null

  /art/runtime/base/
histogram.h 54 double Variance() const;
106 // Summation of the values entered. Used to calculate variance.
histogram-inl.h 131 template <class Value> inline double Histogram<Value>::Variance() const {
133 // Using algorithms for calculating variance over a population:
histogram_test.cc 57 double variance; local
62 variance = hist->Variance();
63 EXPECT_EQ(64.25, variance);
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
webrunner.js 115 // For making Median and Variance
178 // Make Variance
179 results.variance = 0;
182 results.variance += Math.pow(times[i] - results.mean, 2);
184 results.variance /= num - 1;
187 results.deviation = Math.sqrt( results.variance );
    [all...]

Completed in 83 milliseconds