Lines Matching defs:in

6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
69 t->in = 0;
329 "in process__validate() but nothing's invalid");
460 int32_t mulAdd(int16_t in, int16_t v, int32_t a)
464 asm( "smlabb %[out], %[in], %[v], %[a] \n"
466 : [in]"%r"(in), [v]"r"(v), [a]"r"(a)
470 return a + in * int32_t(v);
475 int32_t mul(int16_t in, int16_t v)
479 asm( "smulbb %[out], %[in], %[v] \n"
481 : [in]"%r"(in), [v]"r"(v)
485 return in * int32_t(v);
546 // ramp gain - resample to temp buffer and scale/mix in 2nd step
651 int16_t const *in = static_cast<int16_t const *>(t->in);
669 l = (int32_t)*in++;
670 r = (int32_t)*in++;
690 uint32_t rl = *reinterpret_cast<uint32_t const *>(in);
691 int16_t a = (int16_t)(((int32_t)in[0] + in[1]) >> 1);
692 in += 2;
713 *out++ += (vl >> 16) * (int32_t) *in++;
714 *out++ += (vr >> 16) * (int32_t) *in++;
728 uint32_t rl = *reinterpret_cast<uint32_t const *>(in);
729 in += 2;
736 t->in = in;
741 int16_t const *in = static_cast<int16_t const *>(t->in);
758 int32_t l = *in++;
778 int16_t l = *in++;
799 int32_t l = *in++;
815 int16_t l = *in++;
822 t->in = in;
893 t.in = t.buffer.raw;
894 // t.in == NULL can happen if the track was flushed just after having
896 if (t.in == NULL)
946 t.in = t.buffer.raw;
947 if (t.in == NULL) {
1021 t.in = t.buffer.raw;
1022 // t.in == NULL can happen if the track was flushed just after having
1024 if (t.in == NULL) break;
1056 int16_t const *in = b.i16;
1058 // in == NULL can happen if the track was flushed just after having
1060 if (in == NULL || ((unsigned long)in & 3)) {
1062 LOGE_IF(((unsigned long)in & 3), "process stereo track: input buffer alignment pb: buffer %p track %d, channels %d, needs %08x",
1063 in, i, t.channelCount, t.needs);
1072 uint32_t rl = *reinterpret_cast<uint32_t const *>(in);
1073 in += 2;
1083 uint32_t rl = *reinterpret_cast<uint32_t const *>(in);
1084 in += 2;
1096 // NEVER used in current implementation of process__validate()