Lines Matching refs:coefs
153 static void vector_pow43(int *coefs, int len)
158 coef = coefs[i];
163 coefs[i] = coef;
198 static void noise_scale(int *coefs, int scale, int band_energy, int len)
215 coefs[i] = 0;
220 out = (int)(((int64_t)coefs[i] * c) >> 32);
221 coefs[i] = -((int)(out+round) >> s);
229 out = (int)((int64_t)((int64_t)coefs[i] * c + round) >> s);
230 coefs[i] = -out;
234 coefs[i] = -(int64_t)coefs[i] * c * (1 << -s);