Lines Matching defs:error
123 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp_coeff[][FLAC__MAX_LPC_ORDER], FLAC__double error[])
142 /* Update LPC coefficients and total error. */
157 error[i] = err;
210 FLAC__double error = 0.0;
213 error += lp_coeff[i] * (1 << *shift);
214 q = lround(error);
226 error -= q;
236 FLAC__double error = 0.0;
242 error += lp_coeff[i] / (1 << nshift);
243 q = lround(error);
254 error -= q;
1325 else if(lpc_error < 0.0) { /* error should not be negative but can happen due to inadequate floating-point resolution */