OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:x_minus_half_floor
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_neon.c
356
const int32x4_t
x_minus_half_floor
= vcvtq_s32_f32(x_minus_half);
local
361
vaddq_s32(
x_minus_half_floor
, float_exponent_bias);
365
const float32x4_t y = vsubq_f32(x_max, vcvtq_f32_s32(
x_minus_half_floor
));
aec_core_sse2.c
340
const __m128i
x_minus_half_floor
= _mm_cvtps_epi32(x_minus_half);
local
346
_mm_add_epi32(
x_minus_half_floor
, *((__m128i*)float_exponent_bias));
350
const __m128 y = _mm_sub_ps(x_max, _mm_cvtepi32_ps(
x_minus_half_floor
));
Completed in 2189 milliseconds