Home
last modified time | relevance | path

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

/system/media/audio_utils/include/audio_utils/
DBiquadFilter.h150 D yn = (OCCUPANCY >> 0 & 1) * b0 * xn + s1n1; in biquad_filter_1fast() local
151 s1n1 = (OCCUPANCY >> 1 & 1) * b1 * xn + (OCCUPANCY >> 3 & 1) * negativeA1 * yn + s2n1; in biquad_filter_1fast()
152 s2n1 = (OCCUPANCY >> 2 & 1) * b2 * xn + (OCCUPANCY >> 4 & 1) * negativeA2 * yn; in biquad_filter_1fast()
156 *output = yn; in biquad_filter_1fast()
225 T yn = s1; in biquad_filter_neon_impl() local
228 yn = vmla(yn, b0, xn); in biquad_filter_neon_impl()
232 s1 = vmla(s1, negativeA1, yn); in biquad_filter_neon_impl()
243 s2 = vmla(s2, negativeA2, yn); in biquad_filter_neon_impl()
247 vst1(output, yn); in biquad_filter_neon_impl()