Home | History | Annotate | Download | only in audioflinger

Lines Matching defs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
123 // copy in the input data into the head (impulse+halfNumCoefs) of the buffer.
127 const TI* const in, const size_t inputIndex)
131 head[i] = in[inputIndex*CHANNELS + i];
135 // advance the impulse pointer, and load in data into the head (impulse+halfNumCoefs)
139 const TI* const in, const size_t inputIndex)
148 readAgain<CHANNELS>(impulse, halfNumCoefs, in, inputIndex);
355 // determine the number of polyphases in the filterbank.
394 mPhaseFraction %= phaseWrapLimit; // should not do anything, but just in case.
503 // sanity check that inFrameCount is in signed 32 bit integer range.
534 if (phaseFraction >= phaseWrapLimit) { // read in data
554 const TI* const in = reinterpret_cast<const TI*>(mBuffer.raw);
565 // from the input samples in impulse[-halfNumCoefs+1]... impulse[halfNumCoefs]
566 // from the polyphase filter of (phaseFraction / phaseWrapLimit) in coefs.
585 mInBuffer.template readAdvance<CHANNELS>(impulse, halfNumCoefs, in, inputIndex);
603 // inputIndex must be zero in all three cases:
608 ALOG_ASSERT(mBuffer.frameCount == 0); // there must be no frames in the buffer