Searched refs:m_smoothedValue (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioParam.cpp67 return narrowPrecisionToFloat(m_smoothedValue);
78 if (m_smoothedValue == m_value) {
84 m_smoothedValue = m_value;
87 m_smoothedValue += (m_value - m_smoothedValue) * DefaultSmoothingConstant;
90 if (fabs(m_smoothedValue - m_value) < SnapThreshold) // FIXME: the threshold needs to be adjustable depending on range - but this is OK general purpose value.
91 m_smoothedValue = m_value;
H A DAudioParam.h79 void resetSmoothedValue() { m_smoothedValue = m_value; }
122 , m_smoothedValue(defaultValue) { }
132 double m_smoothedValue; member in class:blink::FINAL

Completed in 58 milliseconds