HomeSort by relevance Sort by last modified time
    Searched refs:kThresh (Results 1 - 3 of 3) sorted by null

  /external/webrtc/src/modules/audio_processing/aec/
aec_core_sse2.c 78 const __m128 kThresh = _mm_set1_ps(aec->errThresh);
95 const __m128 bigger = _mm_cmpgt_ps(absEf, kThresh);
97 const __m128 absEfInv = _mm_div_ps(kThresh, absEfPlus);
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core_neon.c 128 const float32x4_t kThresh = vmovq_n_f32(error_threshold);
141 const uint32x4_t bigger = vcgtq_f32(absEf, kThresh);
143 const float32x4_t absEfInv = vdivq_f32(kThresh, absEfPlus);
aec_core_sse2.c 81 const __m128 kThresh = aec->extended_filter_enabled
99 const __m128 bigger = _mm_cmpgt_ps(absEf, kThresh);
101 const __m128 absEfInv = _mm_div_ps(kThresh, absEfPlus);

Completed in 137 milliseconds