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

  /external/webkit/Source/WebCore/platform/audio/
ReverbInputBuffer.cpp 43 void ReverbInputBuffer::write(float* sourceP, size_t numberOfFrames)
51 memcpy(m_buffer.data() + m_writeIndex, sourceP, sizeof(float) * numberOfFrames);
72 float* sourceP = m_buffer.data();
73 float* p = sourceP + *readIndex;
VectorMath.cpp 44 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess)
47 ::vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess);
49 vDSP_vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess);
64 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess)
70 *destP = k * *sourceP;
71 sourceP += sourceStride;
Biquad.h 49 void process(const float* sourceP, float* destP, size_t framesToProcess);
89 void processFast(const float* sourceP, float* destP, size_t framesToProcess);
90 void processSliceFast(double* sourceP, double* destP, double* coefficientsP, size_t framesToProcess);
FFTConvolver.h 49 void process(FFTFrame* fftKernel, float* sourceP, float* destP, size_t framesToProcess);
ReverbInputBuffer.h 44 void write(float* sourceP, size_t numberOfFrames);
VectorMath.h 34 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t framesToProcess);
EqualPowerPanner.cpp 63 float* sourceP = channel->data();
67 if (!sourceP || !destinationL || !destinationR)
99 float input = *sourceP++;
FFTConvolver.cpp 50 void FFTConvolver::process(FFTFrame* fftKernel, float* sourceP, float* destP, size_t framesToProcess)
58 bool isCopyGood1 = sourceP && inputP && m_readWriteIndex + framesToProcess <= m_inputBuffer.size();
63 memcpy(inputP + m_readWriteIndex, sourceP, sizeof(float) * framesToProcess);
Biquad.cpp 67 void Biquad::process(const float* sourceP, float* destP, size_t framesToProcess)
71 processFast(sourceP, destP, framesToProcess);
89 float x = *sourceP++;
121 void Biquad::processFast(const float* sourceP, float* destP, size_t framesToProcess)
146 input2P[i] = *sourceP++;
158 void Biquad::processSliceFast(double* sourceP, double* destP, double* coefficientsP, size_t framesToProcess)
161 vDSP_deq22D(sourceP, 1, coefficientsP, destP, 1, framesToProcess);
163 // Save history. Note that sourceP and destP reference m_inputBuffer and m_outputBuffer respectively.
166 sourceP[0] = sourceP[framesToProcess - 2 + 2]
    [all...]

Completed in 7609 milliseconds