OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Mean
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/media/mca/filterfw/native/core/
statistics.h
31
float
Mean
() const { return mean_; }
/art/runtime/base/
histogram-inl.h
126
template <class Value> inline double Histogram<Value>::
Mean
() const {
166
TimeUnit unit = GetAppropriateTimeUnit(
Mean
() * kAdjust);
169
os << "Avg: " << FormatDuration(
Mean
() * kAdjust, unit) << " Max: ";
/external/chromium_org/chrome/test/functional/
perf.py
81
avg =
Mean
(values)
88
def
Mean
(values):
89
"""Returns the arithmetic
mean
of |values|."""
96
"""Returns the geometric
mean
of |values|."""
101
return math.exp(
Mean
([math.log(x) for x in values]))
448
autotest_value =
Mean
(value)
602
logging.info(' Average: %f %s',
Mean
(values), units)
[
all
...]
Completed in 124 milliseconds