HomeSort by relevance Sort by last modified time
    Searched defs:Mean (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/webrtc/test/
statistics.cc 25 double Statistics::Mean() const {
34 return sum_squared_ / count_ - Mean() * Mean();
  /external/chromium_org/tools/auto_bisect/
math_utils.py 11 """Calculates the truncated mean of a set of values.
13 Note that this isn't just the mean of the set of values with the highest
23 The truncated mean as a float.
55 def Mean(values):
56 """Calculates the arithmetic mean of a list of values."""
64 mean = Mean(values)
65 differences_from_mean = [float(x) - mean for x in values]
81 or to the mean of the two numbers. This version returns the difference
  /art/runtime/base/
histogram-inl.h 133 template <class Value> inline double Histogram<Value>::Mean() const {
172 const TimeUnit unit = GetAppropriateTimeUnit(Mean() * kAdjust);
177 << "Avg: " << FormatDuration(Mean() * kAdjust, unit, kFractionalDigits) << " Max: "
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
framedrop_primitives.cc 130 float Mean() {
139 return sum_squared_ / count_ - Mean() * Mean();
144 ss << (Mean() >= 0 ? Mean() : -1) << ", " <<
  /external/chromium_org/third_party/webrtc/video_engine/
overuse_frame_detector.cc 104 float Statistics::Mean() const { return filtered_samples_->filtered(); }
267 // Calculate variance (using samples above the mean).
270 int mean = hist_sum_ / hist_samples_; local
277 if (time > mean) {
280 variance += ((time - mean) * (time - mean));
285 float cov = sqrt(variance) / mean;
549 LOG(LS_VERBOSE) << " Frame stats: capture avg: " << capture_deltas_.Mean()

Completed in 330 milliseconds