Lines Matching refs:FLAC__int32
224 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__floa… in FLAC__fixed_compute_best_predictor()
226 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__fixe… in FLAC__fixed_compute_best_predictor()
229 FLAC__int32 last_error_0 = data[-1]; in FLAC__fixed_compute_best_predictor()
230 FLAC__int32 last_error_1 = data[-1] - data[-2]; in FLAC__fixed_compute_best_predictor()
231 FLAC__int32 last_error_2 = last_error_1 - (data[-2] - data[-3]); in FLAC__fixed_compute_best_predictor()
232 FLAC__int32 last_error_3 = last_error_2 - (data[-2] - 2*data[-3] + data[-4]); in FLAC__fixed_compute_best_predictor()
233 FLAC__int32 error, save; in FLAC__fixed_compute_best_predictor()
282 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… in FLAC__fixed_compute_best_predictor_wide()
284 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… in FLAC__fixed_compute_best_predictor_wide()
287 FLAC__int32 last_error_0 = data[-1]; in FLAC__fixed_compute_best_predictor_wide()
288 FLAC__int32 last_error_1 = data[-1] - data[-2]; in FLAC__fixed_compute_best_predictor_wide()
289 FLAC__int32 last_error_2 = last_error_1 - (data[-2] - data[-3]); in FLAC__fixed_compute_best_predictor_wide()
290 FLAC__int32 last_error_3 = last_error_2 - (data[-2] - 2*data[-3] + data[-4]); in FLAC__fixed_compute_best_predictor_wide()
291 FLAC__int32 error, save; in FLAC__fixed_compute_best_predictor_wide()
352 void FLAC__fixed_compute_residual(const FLAC__int32 data[], unsigned data_len, unsigned order, FLAC… in FLAC__fixed_compute_residual()
395 void FLAC__fixed_restore_signal(const FLAC__int32 residual[], unsigned data_len, unsigned order, FL… in FLAC__fixed_restore_signal()