/external/chromium_org/third_party/WebKit/Source/core/platform/audio/ffmpeg/ |
FFTFrameFFMPEG.cpp | 172 VectorMath::vsmul(realP1, 1, &scale, realP1, 1, halfSize); 173 VectorMath::vsmul(imagP1, 1, &scale, imagP1, 1, halfSize); 210 VectorMath::vsmul(interleavedData, 1, &scale, data, 1, m_FFTSize);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/ |
VectorMath.h | 37 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess);
|
AudioChannel.cpp | 56 vsmul(data(), 1, &scale, mutableData(), 1, length());
|
AudioBus.cpp | 292 vsmul(destination, 1, &scale, destination, 1, length()); 365 vsmul(tempData, 1, &scale, tempData, 1, length()); 371 vsmul(tempData, 1, &scale, tempData, 1, length()); 490 vsmul(sources[channelIndex], 1, &gain, destinations[channelIndex], 1, framesToProcess - framesToDezipper);
|
VectorMath.cpp | 57 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess) function in namespace:WebCore::VectorMath 60 ::vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess); 196 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess)
|
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
PeriodicWave.cpp | 172 vsmul(realData, 1, &scale, realP, 1, numberOfComponents); 173 vsmul(imagData, 1, &scale, imagP, 1, numberOfComponents); 183 vsmul(imagP, 1, &minusOne, imagP, 1, halfSize); 219 vsmul(data, 1, &normalizationScale, data, 1, m_periodicWaveSize);
|
OscillatorNode.cpp | 198 vsmul(detuneValues, 1, &k, detuneValues, 1, framesToProcess); 216 vsmul(phaseIncrements, 1, &finalScale, phaseIncrements, 1, framesToProcess);
|
RealtimeAnalyser.cpp | 130 VectorMath::vsmul(dest, 1, &scale, dest, 1, framesToProcess);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/ipp/ |
FFTFrameIPP.cpp | 130 VectorMath::vsmul(realP1, 1, &scale, realP1, 1, halfSize); 131 VectorMath::vsmul(imagP1, 1, &scale, imagP1, 1, halfSize);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/mac/ |
FFTFrameMac.cpp | 126 VectorMath::vsmul(realP1, 1, &scale, realP1, 1, halfSize); 127 VectorMath::vsmul(imagP1, 1, &scale, imagP1, 1, halfSize);
|