Lines Matching defs:impulse
123 // copy in the input data into the head (impulse+halfNumCoefs) of the buffer.
126 void AudioResamplerDyn<TC, TI, TO>::InBuffer::readAgain(TI*& impulse, const int halfNumCoefs,
129 TI* head = impulse + halfNumCoefs*CHANNELS;
135 // advance the impulse pointer, and load in data into the head (impulse+halfNumCoefs)
138 void AudioResamplerDyn<TC, TI, TO>::InBuffer::readAdvance(TI*& impulse, const int halfNumCoefs,
141 impulse += CHANNELS;
143 if (CC_UNLIKELY(impulse >= mRingFull)) {
146 impulse -= shiftDown;
148 readAgain<CHANNELS>(impulse, halfNumCoefs, in, inputIndex);
494 TI* impulse = mInBuffer.getImpulse();
536 impulse, c.mHalfNumCoefs,
547 impulse, c.mHalfNumCoefs,
565 // from the input samples in impulse[-halfNumCoefs+1]... impulse[halfNumCoefs]
576 impulse, volumeSimd);
585 mInBuffer.template readAdvance<CHANNELS>(impulse, halfNumCoefs, in, inputIndex);
609 mInBuffer.setImpulse(impulse);