Home | History | Annotate | Download | only in audioflinger

Lines Matching defs:vr

786     int32_t vr = t->prevVolume[1];
805 *out++ += (vr >> 16) * r;
808 vr += vrInc;
815 *out++ += (vr >> 16) * (*temp++ >> 12);
817 vr += vrInc;
821 t->prevVolume[1] = vr;
828 const int16_t vr = t->volume[1];
837 out[1] = mulAdd(r, vr, out[1]);
847 out[1] = mulAdd(r, vr, out[1]);
863 int32_t vr = t->prevVolume[1];
876 *out++ += (vr >> 16) * r;
879 vr += vrInc;
884 t->prevVolume[1] = vr;
908 int32_t vr = t->prevVolume[1];
918 *out++ += (vr >> 16) * (int32_t) *in++;
920 vr += vrInc;
924 t->prevVolume[1] = vr;
951 int32_t vr = t->prevVolume[1];
964 *out++ += (vr >> 16) * l;
967 vr += vrInc;
972 t->prevVolume[1] = vr;
979 const int16_t vr = t->volume[1];
984 out[1] = mulAdd(l, vr, out[1]);
994 int32_t vr = t->prevVolume[1];
1005 *out++ += (vr >> 16) * l;
1007 vr += vrInc;
1011 t->prevVolume[1] = vr;
1017 const int16_t vr = t->volume[1];
1021 out[1] = mulAdd(l, vr, out[1]);
1255 const int16_t vr = t.volume[1];
1273 if (CC_UNLIKELY(uint32_t(vl) > UNITY_GAIN || uint32_t(vr) > UNITY_GAIN)) {