Searched defs:fft_buf (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aecm/
H A Daecm_core_c.c171 // In fft_buf, +16 for 32-byte alignment.
172 int16_t fft_buf[PART_LEN4 + 16]; local
173 int16_t *fft = (int16_t *) (((uintptr_t) fft_buf + 31) & ~31);
303 int16_t fft_buf[PART_LEN4 + 2 + 16]; // +2 to make a loop safe. local
308 int16_t* fft = (int16_t*) (((uintptr_t) fft_buf + 31) & ~ 31);
H A Daecm_core_mips.c634 // In fft_buf, +16 for 32-byte alignment.
635 int16_t fft_buf[PART_LEN4 + 16]; local
636 int16_t *fft = (int16_t *) (((uintptr_t) fft_buf + 31) & ~31);
816 int16_t fft_buf[PART_LEN4 + 2 + 16]; // +2 to make a loop safe. local
821 int16_t* fft = (int16_t*)(((uint32_t)fft_buf + 31) & ~ 31);

Completed in 145 milliseconds