Home
last modified time | relevance | path

Searched refs:extrapolation (Results 1 – 1 of 1) sorted by relevance

/frameworks/av/services/audioflinger/
DLinearMap.h226 T findX(T y, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const {
227 return findU(y, mX, mY, method, extrapolation, startValue);
233 T findY(T x, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const {
234 return findU(x, mY, mX, method, extrapolation, startValue);
302 double extrapolation, T startValue) const { in findU() argument
318 (i == (ssize_t)mSamples - 1 && mExtrapolateTail && extrapolation == 0.0)) { in findU()
324 return uArray[current] + diff * extrapolation; in findU()
350 return uArray[previous] + diff * extrapolation; in findU()