HomeSort by relevance Sort by last modified time
    Searched defs:xPow (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core_internal.h 71 float xPow[PART_LEN1];
aec_core_mips.c     [all...]
aec_core_neon.c 132 const float32x4_t xPow = vld1q_f32(&aec->xPow[i]);
135 const float32x4_t xPowPlus = vaddq_f32(xPow, k1e_10f);
162 ef[0][i] /= (aec->xPow[i] + 1e-10f);
163 ef[1][i] /= (aec->xPow[i] + 1e-10f);
aec_core_sse2.c 88 const __m128 xPow = _mm_loadu_ps(&aec->xPow[i]);
92 const __m128 xPowPlus = _mm_add_ps(xPow, k1e_10f);
125 ef[0][i] /= (aec->xPow[i] + 1e-10f);
126 ef[1][i] /= (aec->xPow[i] + 1e-10f);

Completed in 776 milliseconds