OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:absEf
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_neon.c
151
const float32x4_t
absEf
= vsqrtq_f32(ef_sum2);
152
const uint32x4_t bigger = vcgtq_f32(
absEf
, kThresh);
153
const float32x4_t absEfPlus = vaddq_f32(
absEf
, k1e_10f);
aec_core_sse2.c
107
const __m128
absEf
= _mm_sqrt_ps(ef_sum2);
108
const __m128 bigger = _mm_cmpgt_ps(
absEf
, kThresh);
109
__m128 absEfPlus = _mm_add_ps(
absEf
, k1e_10f);
Completed in 39 milliseconds