Home
last modified time | relevance | path

Searched refs:error_threshold (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_mips.c719 const float error_threshold = extended_filter_enabled in WebRtcAec_ScaleErrorSignal_mips() local
726 float err_th2 = error_threshold * error_threshold; in WebRtcAec_ScaleErrorSignal_mips()
776 [err_th] "f" (error_threshold) in WebRtcAec_ScaleErrorSignal_mips()
Daec_core_neon.c135 const float error_threshold = extended_filter_enabled ? in ScaleErrorSignalNEON() local
139 const float32x4_t kThresh = vmovq_n_f32(error_threshold); in ScaleErrorSignalNEON()
177 if (abs_ef > error_threshold) { in ScaleErrorSignalNEON()
178 abs_ef = error_threshold / (abs_ef + 1e-10f); in ScaleErrorSignalNEON()
Daec_core_sse2.c129 const float error_threshold = extended_filter_enabled in ScaleErrorSignalSSE2() local
138 if (abs_ef > error_threshold) { in ScaleErrorSignalSSE2()
139 abs_ef = error_threshold / (abs_ef + 1e-10f); in ScaleErrorSignalSSE2()
Daec_core.c191 const float error_threshold = extended_filter_enabled in ScaleErrorSignal() local
201 if (abs_ef > error_threshold) { in ScaleErrorSignal()
202 abs_ef = error_threshold / (abs_ef + 1e-10f); in ScaleErrorSignal()
/external/tensorflow/tensorflow/lite/kernels/internal/
Dresize_bilinear_test.cc30 int output_height, float error_threshold) { in TestOneResizeBilinear() argument
74 ASSERT_LT(relative_error, error_threshold); in TestOneResizeBilinear()