Lines Matching refs:FLAC__int32
217 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, float resi… in FLAC__fixed_compute_best_predictor()
219 unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__fixe… in FLAC__fixed_compute_best_predictor()
222 FLAC__int32 last_error_0 = data[-1]; in FLAC__fixed_compute_best_predictor()
223 FLAC__int32 last_error_1 = data[-1] - data[-2]; in FLAC__fixed_compute_best_predictor()
224 FLAC__int32 last_error_2 = last_error_1 - (data[-2] - data[-3]); in FLAC__fixed_compute_best_predictor()
225 FLAC__int32 last_error_3 = last_error_2 - (data[-2] - 2*data[-3] + data[-4]); in FLAC__fixed_compute_best_predictor()
226 FLAC__int32 error, save; in FLAC__fixed_compute_best_predictor()
275 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, float… in FLAC__fixed_compute_best_predictor_wide()
277 unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC_… in FLAC__fixed_compute_best_predictor_wide()
280 FLAC__int32 last_error_0 = data[-1]; in FLAC__fixed_compute_best_predictor_wide()
281 FLAC__int32 last_error_1 = data[-1] - data[-2]; in FLAC__fixed_compute_best_predictor_wide()
282 FLAC__int32 last_error_2 = last_error_1 - (data[-2] - data[-3]); in FLAC__fixed_compute_best_predictor_wide()
283 FLAC__int32 last_error_3 = last_error_2 - (data[-2] - 2*data[-3] + data[-4]); in FLAC__fixed_compute_best_predictor_wide()
284 FLAC__int32 error, save; in FLAC__fixed_compute_best_predictor_wide()
336 void FLAC__fixed_compute_residual(const FLAC__int32 data[], unsigned data_len, unsigned order, FLAC… in FLAC__fixed_compute_residual()
367 void FLAC__fixed_restore_signal(const FLAC__int32 residual[], unsigned data_len, unsigned order, FL… in FLAC__fixed_restore_signal()