HomeSort by relevance Sort by last modified time
    Searched refs:vsmul (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
VectorMath.h 38 PLATFORM_EXPORT 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 294 vsmul(destination, 1, &scale, destination, 1, length());
367 vsmul(tempData, 1, &scale, tempData, 1, length());
373 vsmul(tempData, 1, &scale, tempData, 1, length());
492 vsmul(sources[channelIndex], 1, &gain, destinations[channelIndex], 1, framesToProcess - framesToDezipper);
VectorMath.cpp 58 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess) function in namespace:WebCore::VectorMath
61 ::vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess);
197 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 171 vsmul(realData, 1, &scale, realP, 1, numberOfComponents);
172 vsmul(imagData, 1, &scale, imagP, 1, numberOfComponents);
182 vsmul(imagP, 1, &minusOne, imagP, 1, halfSize);
218 vsmul(data, 1, &normalizationScale, data, 1, m_periodicWaveSize);
OscillatorNode.cpp 192 vsmul(detuneValues, 1, &k, detuneValues, 1, framesToProcess);
210 vsmul(phaseIncrements, 1, &finalScale, phaseIncrements, 1, framesToProcess);
RealtimeAnalyser.cpp 118 VectorMath::vsmul(dest, 1, &scale, dest, 1, framesToProcess);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/ffmpeg/
FFTFrameFFMPEG.cpp 145 VectorMath::vsmul(interleavedData, 1, &scale, data, 1, m_FFTSize);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/mac/
FFTFrameMac.cpp 107 VectorMath::vsmul(data, 1, &scale, scaledData.data(), 1, m_FFTSize);

Completed in 83 milliseconds