Home | History | Annotate | Download | only in audioflinger

Lines Matching refs:clamp16

2053 static inline int16_t clamp16(int32_t sample)
2100 out[0] = clamp16(mul(out[0], vl >> 16) >> 12);
2113 out[0] = clamp16(mul(out[0], vl >> 16) >> 12);
2114 out[1] = clamp16(mul(out[1], vr >> 16) >> 12);
2123 out[0] = clamp16(mul(out[0], leftVol) >> 12);
2128 out[0] = clamp16(mul(out[0], leftVol) >> 12);
2129 out[1] = clamp16(mul(out[1], rightVol) >> 12);
5449 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);