OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tableInterpolationFactor
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
PeriodicWave.h
57
// Interpolation between these two tables can be made according to
tableInterpolationFactor
.
59
void waveDataForFundamentalFrequency(float, float* &lowerWaveData, float* &higherWaveData, float&
tableInterpolationFactor
);
OscillatorNode.cpp
272
float
tableInterpolationFactor
;
279
m_periodicWave->waveDataForFundamentalFrequency(frequency, lowerWaveData, higherWaveData,
tableInterpolationFactor
);
303
m_periodicWave->waveDataForFundamentalFrequency(frequency, lowerWaveData, higherWaveData,
tableInterpolationFactor
);
317
float sample = (1 -
tableInterpolationFactor
) * sampleHigher +
tableInterpolationFactor
* sampleLower;
PeriodicWave.cpp
101
void PeriodicWave::waveDataForFundamentalFrequency(float fundamentalFrequency, float* &lowerWaveData, float* &higherWaveData, float&
tableInterpolationFactor
)
126
tableInterpolationFactor
= pitchRange - rangeIndex1;
Completed in 37 milliseconds