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
56 * These coeficients are computed with the "fir" utility found in
394 int32_t mulRL(int left, int32_t in, uint32_t vRL)
399 asm( "smultb %[out], %[in], %[vRL] \n"
401 : [in]"%r"(in), [vRL]"r"(vRL)
404 asm( "smultt %[out], %[in], %[vRL] \n"
406 : [in]"%r"(in), [vRL]"r"(vRL)
412 return int32_t((int64_t(in) * v) >> 16);
417 int32_t mulAdd(int16_t in, int32_t v, int32_t a)
421 asm( "smlawb %[out], %[v], %[in], %[a] \n"
423 : [in]"%r"(in), [v]"r"(v), [a]"r"(a)
427 return a + int32_t((int64_t(v) * in) >> 16);
516 // changes. Or load two pointers one for up and one for down in the init function.
576 int16_t const * const in = mBuffer.i16;
579 // Always read-in the first samples from the input buffer
582 head[i] = in[inputIndex*CHANNELS + i];
597 read<CHANNELS>(impulse, phaseFraction, in, inputIndex);
618 * This function reads only one frame from input buffer and writes it in
624 const int16_t* in, size_t inputIndex)
638 head[i] = in[inputIndex*CHANNELS + i];