OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mMean
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libcpustats/
CentralTendencyStatistics.cpp
30
mMean
= 0;
33
double delta = x -
mMean
;
34
mMean
+= delta / mN;
35
mM2 += delta * (x -
mMean
);
40
mMean
= NAN;
/frameworks/av/include/cpustats/
CentralTendencyStatistics.h
28
mMean
(NAN), mMedian(NAN), mMinimum(INFINITY), mMaximum(-INFINITY), mN(0), mM2(0),
37
double mean() const { return
mMean
; }
58
double
mMean
;
Completed in 73 milliseconds