Lines Matching refs:coef
155 int i, coef;
158 coef = coefs[i];
159 if (coef < 0)
160 coef = -(int)ff_cbrt_tab_fixed[(-coef) & 8191];
162 coef = (int)ff_cbrt_tab_fixed[ coef & 8191];
163 coefs[i] = coef;
281 static av_always_inline void predict(PredictorState *ps, int *coef,
317 *coef += (unsigned)((pv.mant + (1 << (shift - 1))) >> shift);
319 *coef += (unsigned)pv.mant << -shift;
323 e0 = av_int2sf(*coef, 2);