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

  /frameworks/native/libs/cpustats/
CentralTendencyStatistics.cpp 30 mMean = 0;
33 double delta = x - mMean;
34 mMean += delta / mN;
35 mM2 += delta * (x - mMean);
40 mMean = NAN;
  /frameworks/native/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 47 milliseconds