Home
last modified time | relevance | path

Searched refs:total_error_2 (Results 1 – 2 of 2) sorted by relevance

/external/flac/libFLAC/
Dfixed.c234 …FLAC__uint32 total_error_0 = 0, total_error_1 = 0, total_error_2 = 0, total_error_3 = 0, total_err… in FLAC__fixed_compute_best_predictor() local
240 error -= last_error_1; total_error_2 += local_abs(error); last_error_1 = save; save = error; in FLAC__fixed_compute_best_predictor()
245 if(total_error_0 < min(min(min(total_error_1, total_error_2), total_error_3), total_error_4)) in FLAC__fixed_compute_best_predictor()
247 else if(total_error_1 < min(min(total_error_2, total_error_3), total_error_4)) in FLAC__fixed_compute_best_predictor()
249 else if(total_error_2 < min(total_error_3, total_error_4)) in FLAC__fixed_compute_best_predictor()
261 FLAC__ASSERT(data_len > 0 || total_error_2 == 0); in FLAC__fixed_compute_best_predictor()
267 …residual_bits_per_sample[2] = (FLAC__float)((total_error_2 > 0) ? log(M_LN2 * (FLAC__double)total_… in FLAC__fixed_compute_best_predictor()
273 …residual_bits_per_sample[2] = (total_error_2 > 0) ? local__compute_rbps_integerized(total_error_2,… in FLAC__fixed_compute_best_predictor()
296 …FLAC__uint64 total_error_0 = 0, total_error_1 = 0, total_error_2 = 0, total_error_3 = 0, total_err… in FLAC__fixed_compute_best_predictor_wide() local
302 error -= last_error_1; total_error_2 += local_abs(error); last_error_1 = save; save = error; in FLAC__fixed_compute_best_predictor_wide()
[all …]
/external/flac/libFLAC/ia32/
Dfixed_asm.nasm50 ; FLAC__uint32 total_error_0 = 0, total_error_1 = 0, total_error_2 = 0, total_error_3 = 0, total_e…
56 ; error -= last_error_1; total_error_2 += local_abs(error); last_error_1 = save; save = error;
61 ; if(total_error_0 < min(min(min(total_error_1, total_error_2), total_error_3), total_error_4))
63 ; else if(total_error_1 < min(min(total_error_2, total_error_3), total_error_4))
65 ; else if(total_error_2 < min(total_error_3, total_error_4))
74 …er_sample[2] = (FLAC__float)((data_len > 0 && total_error_2 > 0) ? log(M_LN2 * (FLAC__double)total…
98 ; mm1 == total_error_2:total_error_3
123 pxor mm1, mm1 ; mm1 = total_error_2:total_error_3
151 paddd mm1, mm7 ; mm1 = total_error_2:total_error_3
161 ; if(total_error_0 < min(min(min(total_error_1, total_error_2), total_error_3), total_error_4))
[all …]