OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mLow
(Results
1 - 3
of
3
) sorted by null
/frameworks/av/media/libnblog/
PerformanceAnalysis.cpp
59
const int unboundedIndex = lround((value -
mLow
) / mBinSize) + 1;
81
ss << kVersion << "," << mBinSize << "," << mNumBins << "," <<
mLow
<< ",{";
139
ss <<
mLow
+ (bin - 1) * mBinSize;
/frameworks/av/media/libnblog/include/media/nblog/
PerformanceAnalysis.h
71
: mBinSize(binSize), mNumBins(numBins),
mLow
(low), mBins(mNumBins + 2) {}
126
const double
mLow
; // Lower bound of values
128
// Data structure to store the actual histogram. Counts of bin values less than
mLow
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
MotionIndicatorView.java
335
private int
mLow
, mHigh;
342
mLow
= low;
350
mLow
= 0;
357
mCovered = new boolean[(mHigh-
mLow
)/mStep];
375
int iLow = Math.max(Math.round((low -
mLow
) / mStep), 0);
376
int iHigh = Math.min(Math.round((high -
mLow
) / mStep), mCovered.length-1);
425
int iStep = (data -
mLow
)/mStep;
460
return ((float)(mLastData -
mLow
))/mStep;
Completed in 119 milliseconds