Home | History | Annotate | Download | only in audioflinger

Lines Matching refs:vr

803     int32_t vr = t->prevVolume[1];
822 *out++ += (vr >> 16) * r;
825 vr += vrInc;
832 *out++ += (vr >> 16) * (*temp++ >> 12);
834 vr += vrInc;
838 t->prevVolume[1] = vr;
845 const int16_t vr = t->volume[1];
854 out[1] = mulAdd(r, vr, out[1]);
864 out[1] = mulAdd(r, vr, out[1]);
880 int32_t vr = t->prevVolume[1];
893 *out++ += (vr >> 16) * r;
896 vr += vrInc;
901 t->prevVolume[1] = vr;
925 int32_t vr = t->prevVolume[1];
935 *out++ += (vr >> 16) * (int32_t) *in++;
937 vr += vrInc;
941 t->prevVolume[1] = vr;
968 int32_t vr = t->prevVolume[1];
981 *out++ += (vr >> 16) * l;
984 vr += vrInc;
989 t->prevVolume[1] = vr;
996 const int16_t vr = t->volume[1];
1001 out[1] = mulAdd(l, vr, out[1]);
1011 int32_t vr = t->prevVolume[1];
1022 *out++ += (vr >> 16) * l;
1024 vr += vrInc;
1028 t->prevVolume[1] = vr;
1034 const int16_t vr = t->volume[1];
1038 out[1] = mulAdd(l, vr, out[1]);
1272 const int16_t vr = t.volume[1];
1290 if (CC_UNLIKELY(uint32_t(vl) > UNITY_GAIN || uint32_t(vr) > UNITY_GAIN)) {