Searched refs:sourceP (Results 1 – 9 of 9) sorted by relevance
/external/webkit/Source/WebCore/platform/audio/ |
D | VectorMath.cpp | 44 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride… in vsmul() argument 47 ::vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess); in vsmul() 49 vDSP_vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess); in vsmul() 64 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride… 70 *destP = k * *sourceP; 71 sourceP += sourceStride;
|
D | Biquad.cpp | 67 void Biquad::process(const float* sourceP, float* destP, size_t framesToProcess) in process() argument 71 processFast(sourceP, destP, framesToProcess); in process() 89 float x = *sourceP++; in process() 121 void Biquad::processFast(const float* sourceP, float* destP, size_t framesToProcess) in processFast() argument 146 input2P[i] = *sourceP++; in processFast() 158 void Biquad::processSliceFast(double* sourceP, double* destP, double* coefficientsP, size_t framesT… in processSliceFast() argument 161 vDSP_deq22D(sourceP, 1, coefficientsP, destP, 1, framesToProcess); in processSliceFast() 166 sourceP[0] = sourceP[framesToProcess - 2 + 2]; in processSliceFast() 167 sourceP[1] = sourceP[framesToProcess - 1 + 2]; in processSliceFast()
|
D | ReverbInputBuffer.cpp | 43 void ReverbInputBuffer::write(float* sourceP, size_t numberOfFrames) in write() argument 51 memcpy(m_buffer.data() + m_writeIndex, sourceP, sizeof(float) * numberOfFrames); in write() 72 float* sourceP = m_buffer.data(); in directReadFrom() local 73 float* p = sourceP + *readIndex; in directReadFrom()
|
D | 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 framesToProces…
|
D | FFTConvolver.cpp | 50 void FFTConvolver::process(FFTFrame* fftKernel, float* sourceP, float* destP, size_t framesToProces… in process() argument 58 …bool isCopyGood1 = sourceP && inputP && m_readWriteIndex + framesToProcess <= m_inputBuffer.size(); in process() 63 memcpy(inputP + m_readWriteIndex, sourceP, sizeof(float) * framesToProcess); in process()
|
D | EqualPowerPanner.cpp | 63 float* sourceP = channel->data(); in pan() local 67 if (!sourceP || !destinationL || !destinationR) in pan() 99 float input = *sourceP++; in pan()
|
D | VectorMath.h | 34 void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride…
|
D | ReverbInputBuffer.h | 44 void write(float* sourceP, size_t numberOfFrames);
|
D | FFTConvolver.h | 49 void process(FFTFrame* fftKernel, float* sourceP, float* destP, size_t framesToProcess);
|