Home | History | Annotate | Download | only in audio

Lines Matching refs:sourceP

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];
167 sourceP[1] = sourceP[framesToProcess - 1 + 2];