Lines Matching defs:coeff
1569 SetCoeffRegs(double *coeff, int mantSize, coeffPtr pCoeff, int pos)
1577 c = *coeff;
1587 *coeff = (double)icoeff / (double)(4 * maxVal);
1591 *coeff = (double)icoeff / (double)(2 * maxVal);
1595 *coeff = (double)icoeff / (double)(maxVal);
1599 *coeff = (double)icoeff / (double)(maxVal / 2);
1607 *coeff = -(*coeff);
1853 i830_limit_coeff(double coeff)
1856 if (coeff < MIN_CUTOFF_FREQ)
1857 coeff = MIN_CUTOFF_FREQ;
1858 if (coeff > MAX_CUTOFF_FREQ)
1859 coeff = MAX_CUTOFF_FREQ;
1861 return coeff;