/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/src/testing/ptest/dsp/complex/ |
H A D | mul3.cpp | 31 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 37 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 42 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 50 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 57 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 102 CALL(native::complex_mul3); 103 IF_ARCH_X86(CALL(sse::complex_mul3)); 104 IF_ARCH_X86(CALL(avx::complex_mul3)); 106 IF_ARCH_ARM(CALL(neon_d32::complex_mul3)); 107 IF_ARCH_AARCH64(CALL(asimd::complex_mul3));
|
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/src/testing/utest/dsp/complex/ |
H A D | mul.cpp | 29 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 36 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 44 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 53 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 61 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 138 native::complex_mul3(dst1_re, dst1_im, src1_re, src1_im, src2_re, src2_im, count); in call() 173 IF_ARCH_X86(CALL(sse::complex_mul3, 16)); 175 IF_ARCH_X86(CALL(avx::complex_mul3, 32)); 180 IF_ARCH_ARM(CALL(neon_d32::complex_mul3, 16)); 183 IF_ARCH_AARCH64(CALL(asimd::complex_mul3, 16));
|
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/src/testing/ptest/dsp/fft/ |
H A D | fastconv.cpp | 33 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 45 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 56 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 76 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 89 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … 186 native::direct_fft, native::complex_mul3, native::reverse_fft, native::add2); 192 sse::direct_fft, sse::complex_mul3, sse::reverse_fft, sse::add2); 194 avx::direct_fft, avx::complex_mul3, avx::reverse_fft, avx::add2); 208 … neon_d32::direct_fft, neon_d32::complex_mul3, neon_d32::reverse_fft, neon_d32::add2); 215 asimd::direct_fft, asimd::complex_mul3, asimd::reverse_fft, asimd::add2);
|
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/dsp/common/ |
H A D | complex.h | 43 extern void (* complex_mul3)(
|
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/src/dsp/ |
H A D | avx.cpp | 231 CEXPORT1(favx, complex_mul3); in dsp_init() 386 CEXPORT2(favx, complex_mul3, complex_mul3_fma3); in dsp_init()
|
H A D | asimd.cpp | 288 EXPORT1(complex_mul3); in dsp_init()
|
H A D | neon-d32.cpp | 126 EXPORT1(complex_mul3); in dsp_init()
|
H A D | sse.cpp | 298 EXPORT1(complex_mul3); in dsp_init()
|
H A D | native.cpp | 274 EXPORT1(complex_mul3); in dsp_init()
|
H A D | dsp.cpp | 242 …void (* complex_mul3)(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im,… variable
|
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/dsp/arch/native/ |
H A D | complex.h | 42 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … in complex_mul3() function
|
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/dsp/arch/x86/sse/ |
H A D | complex.h | 94 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … in complex_mul3() function
|
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/dsp/arch/arm/neon-d32/ |
H A D | complex.h | 111 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … in complex_mul3() function
|
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/dsp/arch/aarch64/asimd/ |
H A D | complex.h | 120 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … in complex_mul3() function
|
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/dsp/arch/x86/avx/ |
H A D | complex.h | 121 …void complex_mul3(float *dst_re, float *dst_im, const float *src1_re, const float *src1_im, const … in complex_mul3() function
|
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/src/core/util/ |
H A D | SyncChirpProcessor.cpp | 533 dsp::complex_mul3( in solve() 713 dsp::complex_mul3( in windowHigherOrderResponses()
|