Searched refs:total_error_3 (Results 1 – 4 of 4) sorted by relevance
/external/flac/src/libFLAC/ |
D | fixed.c | 227 …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 234 error -= last_error_2; total_error_3 += local_abs(error); last_error_2 = save; save = error; in FLAC__fixed_compute_best_predictor() 238 …if(total_error_0 < flac_min(flac_min(flac_min(total_error_1, total_error_2), total_error_3), total… in FLAC__fixed_compute_best_predictor() 240 else if(total_error_1 < flac_min(flac_min(total_error_2, total_error_3), total_error_4)) in FLAC__fixed_compute_best_predictor() 242 else if(total_error_2 < flac_min(total_error_3, total_error_4)) in FLAC__fixed_compute_best_predictor() 244 else if(total_error_3 < total_error_4) in FLAC__fixed_compute_best_predictor() 255 FLAC__ASSERT(data_len > 0 || total_error_3 == 0); in FLAC__fixed_compute_best_predictor() 261 …residual_bits_per_sample[3] = (float)((total_error_3 > 0) ? log(M_LN2 * (double)total_error_3 / (d… in FLAC__fixed_compute_best_predictor() 267 …residual_bits_per_sample[3] = (total_error_3 > 0) ? local__compute_rbps_integerized(total_error_3,… in FLAC__fixed_compute_best_predictor() 289 …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 [all …]
|
D | fixed_intrin_ssse3.c | 60 FLAC__uint32 total_error_0, total_error_1, total_error_2, total_error_3, total_error_4; in FLAC__fixed_compute_best_predictor_intrin_ssse3() local 115 total_error_3 = _mm_cvtsi128_si32(total_err2); in FLAC__fixed_compute_best_predictor_intrin_ssse3() 119 …if(total_error_0 < flac_min(flac_min(flac_min(total_error_1, total_error_2), total_error_3), total… in FLAC__fixed_compute_best_predictor_intrin_ssse3() 121 else if(total_error_1 < flac_min(flac_min(total_error_2, total_error_3), total_error_4)) in FLAC__fixed_compute_best_predictor_intrin_ssse3() 123 else if(total_error_2 < flac_min(total_error_3, total_error_4)) in FLAC__fixed_compute_best_predictor_intrin_ssse3() 125 else if(total_error_3 < total_error_4) in FLAC__fixed_compute_best_predictor_intrin_ssse3() 136 FLAC__ASSERT(data_len > 0 || total_error_3 == 0); in FLAC__fixed_compute_best_predictor_intrin_ssse3() 142 …residual_bits_per_sample[3] = (float)((total_error_3 > 0) ? log(M_LN2 * (double)total_error_3 / (d… in FLAC__fixed_compute_best_predictor_intrin_ssse3() 151 FLAC__uint64 total_error_0, total_error_1, total_error_2, total_error_3, total_error_4; in FLAC__fixed_compute_best_predictor_wide_intrin_ssse3() local 207 m128i_to_i64(total_error_3, total_err3); in FLAC__fixed_compute_best_predictor_wide_intrin_ssse3() [all …]
|
D | fixed_intrin_sse2.c | 60 FLAC__uint32 total_error_0, total_error_1, total_error_2, total_error_3, total_error_4; in FLAC__fixed_compute_best_predictor_intrin_sse2() local 121 total_error_3 = _mm_cvtsi128_si32(total_err2); in FLAC__fixed_compute_best_predictor_intrin_sse2() 125 …if(total_error_0 < flac_min(flac_min(flac_min(total_error_1, total_error_2), total_error_3), total… in FLAC__fixed_compute_best_predictor_intrin_sse2() 127 else if(total_error_1 < flac_min(flac_min(total_error_2, total_error_3), total_error_4)) in FLAC__fixed_compute_best_predictor_intrin_sse2() 129 else if(total_error_2 < flac_min(total_error_3, total_error_4)) in FLAC__fixed_compute_best_predictor_intrin_sse2() 131 else if(total_error_3 < total_error_4) in FLAC__fixed_compute_best_predictor_intrin_sse2() 142 FLAC__ASSERT(data_len > 0 || total_error_3 == 0); in FLAC__fixed_compute_best_predictor_intrin_sse2() 148 …residual_bits_per_sample[3] = (float)((total_error_3 > 0) ? log(M_LN2 * (double)total_error_3 / (d… in FLAC__fixed_compute_best_predictor_intrin_sse2() 157 FLAC__uint64 total_error_0, total_error_1, total_error_2, total_error_3, total_error_4; in FLAC__fixed_compute_best_predictor_wide_intrin_sse2() local 219 m128i_to_i64(total_error_3, total_err3); in FLAC__fixed_compute_best_predictor_wide_intrin_sse2() [all …]
|
/external/flac/src/libFLAC/ia32/ |
D | fixed_asm.nasm | 51 ; FLAC__uint32 total_error_0 = 0, total_error_1 = 0, total_error_2 = 0, total_error_3 = 0, total_e… 58 ; error -= last_error_2; total_error_3 += local_abs(error); last_error_2 = save; save = error; 62 ; if(total_error_0 < min(min(min(total_error_1, total_error_2), total_error_3), total_error_4)) 64 ; else if(total_error_1 < min(min(total_error_2, total_error_3), total_error_4)) 66 ; else if(total_error_2 < min(total_error_3, total_error_4)) 68 ; else if(total_error_3 < total_error_4) 76 …al_bits_per_sample[3] = (float)((data_len > 0 && total_error_3 > 0) ? log(M_LN2 * (double)total_er… 99 ; mm1 == total_error_2:total_error_3 124 pxor mm1, mm1 ; mm1 = total_error_2:total_error_3 152 paddd mm1, mm7 ; mm1 = total_error_2:total_error_3 [all …]
|