OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_smoothedValue
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioParam.cpp
67
return narrowPrecisionToFloat(
m_smoothedValue
);
78
if (
m_smoothedValue
== m_value) {
84
m_smoothedValue
= m_value;
87
m_smoothedValue
+= (m_value -
m_smoothedValue
) * m_smoothingConstant;
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;
AudioParam.h
85
void resetSmoothedValue() {
m_smoothedValue
= m_value; }
115
,
m_smoothedValue
(defaultValue)
134
double
m_smoothedValue
;
Completed in 33 milliseconds