├── .gitignore ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── COPYRIGHT ├── Makefile.am ├── Makefile.in ├── README.md ├── aclocal.m4 ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── ffts.pc.cmake.in ├── ffts.pc.in ├── include └── ffts.h ├── install-sh ├── java ├── Makefile.am ├── Makefile.in ├── android │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.ltk.core.refactoring.prefs │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build.xml │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ ├── proguard-project.txt │ └── project.properties ├── jni │ └── ffts_jni.c └── src │ └── nz │ └── ac │ └── waikato │ └── ffts │ └── FFTS.java ├── ltmain.sh ├── m4 ├── ax_check_class.m4 ├── ax_check_classpath.m4 ├── ax_check_java_home.m4 ├── ax_check_java_plugin.m4 ├── ax_java_check_class.m4 ├── ax_java_options.m4 ├── ax_jni_include_dir.m4 ├── ax_prog_jar.m4 ├── ax_prog_java.m4 ├── ax_prog_java_cc.m4 ├── ax_prog_java_works.m4 ├── ax_prog_javac.m4 ├── ax_prog_javac_works.m4 ├── ax_prog_javadoc.m4 ├── ax_prog_javah.m4 ├── ax_try_compile_java.m4 └── ax_try_run_java.m4 ├── missing ├── src ├── Makefile.am ├── Makefile.in ├── arch │ ├── .gitignore │ ├── ChangeLog │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── arm │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── arm-codegen.c │ │ ├── arm-codegen.h │ │ ├── arm-dis.c │ │ ├── arm-dis.h │ │ ├── arm-vfp-codegen.h │ │ ├── arm-wmmx.h │ │ ├── cmp_macros.th │ │ ├── dpi_macros.th │ │ ├── dpiops.sh │ │ ├── mov_macros.th │ │ ├── tramp.c │ │ ├── vfp_macros.th │ │ ├── vfpm_macros.th │ │ └── vfpops.sh │ ├── arm64 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── arm64-codegen.h │ ├── ia64 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── codegen.c │ │ └── ia64-codegen.h │ ├── mips │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── mips-codegen.h │ │ └── test.c │ ├── ppc │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── ppc-codegen.h │ ├── s390x │ │ ├── .gitignore │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── s390x-codegen.h │ │ └── tramp.c │ ├── sparc │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── sparc-codegen.h │ │ ├── test.c │ │ └── tramp.c │ ├── x64 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── x64-codegen.h │ └── x86 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── x86-codegen.h ├── codegen.c ├── codegen.h ├── codegen_arm.h ├── codegen_sse.h ├── ffts.c ├── ffts_attributes.h ├── ffts_chirp_z.c ├── ffts_chirp_z.h ├── ffts_cpu.c ├── ffts_cpu.h ├── ffts_dd.h ├── ffts_internal.h ├── ffts_nd.c ├── ffts_nd.h ├── ffts_real.c ├── ffts_real.h ├── ffts_real_nd.c ├── ffts_real_nd.h ├── ffts_static.c ├── ffts_static.h ├── ffts_transpose.c ├── ffts_transpose.h ├── ffts_trig.c ├── ffts_trig.h ├── macros-alpha.h ├── macros-altivec.h ├── macros-avx.h ├── macros-neon.h ├── macros-sse.h ├── macros.h ├── neon.h ├── neon.s ├── neon_static.s ├── patterns.h ├── sequitur.h ├── types.h ├── vfp.h └── vfp.s └── tests ├── Makefile.am ├── Makefile.in ├── cpu_test.c ├── test.c └── trig_test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/depcomp -------------------------------------------------------------------------------- /ffts.pc.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/ffts.pc.cmake.in -------------------------------------------------------------------------------- /ffts.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/ffts.pc.in -------------------------------------------------------------------------------- /include/ffts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/include/ffts.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/install-sh -------------------------------------------------------------------------------- /java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/Makefile.am -------------------------------------------------------------------------------- /java/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/Makefile.in -------------------------------------------------------------------------------- /java/android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/android/.classpath -------------------------------------------------------------------------------- /java/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/android/.project -------------------------------------------------------------------------------- /java/android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/android/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /java/android/.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/android/.settings/org.eclipse.ltk.core.refactoring.prefs -------------------------------------------------------------------------------- /java/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/android/AndroidManifest.xml -------------------------------------------------------------------------------- /java/android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/android/ant.properties -------------------------------------------------------------------------------- /java/android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/android/build.xml -------------------------------------------------------------------------------- /java/android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/android/jni/Android.mk -------------------------------------------------------------------------------- /java/android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # requires NEON atm 2 | APP_ABI := armeabi-v7a 3 | -------------------------------------------------------------------------------- /java/android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/android/proguard-project.txt -------------------------------------------------------------------------------- /java/android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/android/project.properties -------------------------------------------------------------------------------- /java/jni/ffts_jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/jni/ffts_jni.c -------------------------------------------------------------------------------- /java/src/nz/ac/waikato/ffts/FFTS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/java/src/nz/ac/waikato/ffts/FFTS.java -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/ltmain.sh -------------------------------------------------------------------------------- /m4/ax_check_class.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_check_class.m4 -------------------------------------------------------------------------------- /m4/ax_check_classpath.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_check_classpath.m4 -------------------------------------------------------------------------------- /m4/ax_check_java_home.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_check_java_home.m4 -------------------------------------------------------------------------------- /m4/ax_check_java_plugin.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_check_java_plugin.m4 -------------------------------------------------------------------------------- /m4/ax_java_check_class.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_java_check_class.m4 -------------------------------------------------------------------------------- /m4/ax_java_options.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_java_options.m4 -------------------------------------------------------------------------------- /m4/ax_jni_include_dir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_jni_include_dir.m4 -------------------------------------------------------------------------------- /m4/ax_prog_jar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_prog_jar.m4 -------------------------------------------------------------------------------- /m4/ax_prog_java.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_prog_java.m4 -------------------------------------------------------------------------------- /m4/ax_prog_java_cc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_prog_java_cc.m4 -------------------------------------------------------------------------------- /m4/ax_prog_java_works.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_prog_java_works.m4 -------------------------------------------------------------------------------- /m4/ax_prog_javac.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_prog_javac.m4 -------------------------------------------------------------------------------- /m4/ax_prog_javac_works.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_prog_javac_works.m4 -------------------------------------------------------------------------------- /m4/ax_prog_javadoc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_prog_javadoc.m4 -------------------------------------------------------------------------------- /m4/ax_prog_javah.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_prog_javah.m4 -------------------------------------------------------------------------------- /m4/ax_try_compile_java.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_try_compile_java.m4 -------------------------------------------------------------------------------- /m4/ax_try_run_java.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/m4/ax_try_run_java.m4 -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/missing -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/arch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/.gitignore -------------------------------------------------------------------------------- /src/arch/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/ChangeLog -------------------------------------------------------------------------------- /src/arch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/LICENSE -------------------------------------------------------------------------------- /src/arch/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/Makefile.am -------------------------------------------------------------------------------- /src/arch/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/README -------------------------------------------------------------------------------- /src/arch/arm/.gitattributes: -------------------------------------------------------------------------------- 1 | /arm-wmmx.h -crlf 2 | -------------------------------------------------------------------------------- /src/arch/arm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/.gitignore -------------------------------------------------------------------------------- /src/arch/arm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/Makefile.am -------------------------------------------------------------------------------- /src/arch/arm/arm-codegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/arm-codegen.c -------------------------------------------------------------------------------- /src/arch/arm/arm-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/arm-codegen.h -------------------------------------------------------------------------------- /src/arch/arm/arm-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/arm-dis.c -------------------------------------------------------------------------------- /src/arch/arm/arm-dis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/arm-dis.h -------------------------------------------------------------------------------- /src/arch/arm/arm-vfp-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/arm-vfp-codegen.h -------------------------------------------------------------------------------- /src/arch/arm/arm-wmmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/arm-wmmx.h -------------------------------------------------------------------------------- /src/arch/arm/cmp_macros.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/cmp_macros.th -------------------------------------------------------------------------------- /src/arch/arm/dpi_macros.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/dpi_macros.th -------------------------------------------------------------------------------- /src/arch/arm/dpiops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/dpiops.sh -------------------------------------------------------------------------------- /src/arch/arm/mov_macros.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/mov_macros.th -------------------------------------------------------------------------------- /src/arch/arm/tramp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/tramp.c -------------------------------------------------------------------------------- /src/arch/arm/vfp_macros.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/vfp_macros.th -------------------------------------------------------------------------------- /src/arch/arm/vfpm_macros.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/vfpm_macros.th -------------------------------------------------------------------------------- /src/arch/arm/vfpops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm/vfpops.sh -------------------------------------------------------------------------------- /src/arch/arm64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm64/.gitignore -------------------------------------------------------------------------------- /src/arch/arm64/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arch/arm64/arm64-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/arm64/arm64-codegen.h -------------------------------------------------------------------------------- /src/arch/ia64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/ia64/.gitignore -------------------------------------------------------------------------------- /src/arch/ia64/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = ia64-codegen.h 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/arch/ia64/codegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/ia64/codegen.c -------------------------------------------------------------------------------- /src/arch/ia64/ia64-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/ia64/ia64-codegen.h -------------------------------------------------------------------------------- /src/arch/mips/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/mips/.gitignore -------------------------------------------------------------------------------- /src/arch/mips/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/mips/Makefile.am -------------------------------------------------------------------------------- /src/arch/mips/mips-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/mips/mips-codegen.h -------------------------------------------------------------------------------- /src/arch/mips/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/mips/test.c -------------------------------------------------------------------------------- /src/arch/ppc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/ppc/.gitignore -------------------------------------------------------------------------------- /src/arch/ppc/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = ppc-codegen.h -------------------------------------------------------------------------------- /src/arch/ppc/ppc-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/ppc/ppc-codegen.h -------------------------------------------------------------------------------- /src/arch/s390x/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/s390x/.gitignore -------------------------------------------------------------------------------- /src/arch/s390x/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/s390x/ChangeLog -------------------------------------------------------------------------------- /src/arch/s390x/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/s390x/Makefile.am -------------------------------------------------------------------------------- /src/arch/s390x/s390x-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/s390x/s390x-codegen.h -------------------------------------------------------------------------------- /src/arch/s390x/tramp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/s390x/tramp.c -------------------------------------------------------------------------------- /src/arch/sparc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/sparc/.gitignore -------------------------------------------------------------------------------- /src/arch/sparc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/sparc/Makefile.am -------------------------------------------------------------------------------- /src/arch/sparc/sparc-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/sparc/sparc-codegen.h -------------------------------------------------------------------------------- /src/arch/sparc/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/sparc/test.c -------------------------------------------------------------------------------- /src/arch/sparc/tramp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/sparc/tramp.c -------------------------------------------------------------------------------- /src/arch/x64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/x64/.gitignore -------------------------------------------------------------------------------- /src/arch/x64/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = x64-codegen.h 2 | 3 | -------------------------------------------------------------------------------- /src/arch/x64/x64-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/x64/x64-codegen.h -------------------------------------------------------------------------------- /src/arch/x86/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/x86/.gitignore -------------------------------------------------------------------------------- /src/arch/x86/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = x86-codegen.h -------------------------------------------------------------------------------- /src/arch/x86/x86-codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/arch/x86/x86-codegen.h -------------------------------------------------------------------------------- /src/codegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/codegen.c -------------------------------------------------------------------------------- /src/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/codegen.h -------------------------------------------------------------------------------- /src/codegen_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/codegen_arm.h -------------------------------------------------------------------------------- /src/codegen_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/codegen_sse.h -------------------------------------------------------------------------------- /src/ffts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts.c -------------------------------------------------------------------------------- /src/ffts_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_attributes.h -------------------------------------------------------------------------------- /src/ffts_chirp_z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_chirp_z.c -------------------------------------------------------------------------------- /src/ffts_chirp_z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_chirp_z.h -------------------------------------------------------------------------------- /src/ffts_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_cpu.c -------------------------------------------------------------------------------- /src/ffts_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_cpu.h -------------------------------------------------------------------------------- /src/ffts_dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_dd.h -------------------------------------------------------------------------------- /src/ffts_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_internal.h -------------------------------------------------------------------------------- /src/ffts_nd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_nd.c -------------------------------------------------------------------------------- /src/ffts_nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_nd.h -------------------------------------------------------------------------------- /src/ffts_real.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_real.c -------------------------------------------------------------------------------- /src/ffts_real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_real.h -------------------------------------------------------------------------------- /src/ffts_real_nd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_real_nd.c -------------------------------------------------------------------------------- /src/ffts_real_nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_real_nd.h -------------------------------------------------------------------------------- /src/ffts_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_static.c -------------------------------------------------------------------------------- /src/ffts_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_static.h -------------------------------------------------------------------------------- /src/ffts_transpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_transpose.c -------------------------------------------------------------------------------- /src/ffts_transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_transpose.h -------------------------------------------------------------------------------- /src/ffts_trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_trig.c -------------------------------------------------------------------------------- /src/ffts_trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/ffts_trig.h -------------------------------------------------------------------------------- /src/macros-alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/macros-alpha.h -------------------------------------------------------------------------------- /src/macros-altivec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/macros-altivec.h -------------------------------------------------------------------------------- /src/macros-avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/macros-avx.h -------------------------------------------------------------------------------- /src/macros-neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/macros-neon.h -------------------------------------------------------------------------------- /src/macros-sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/macros-sse.h -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/neon.h -------------------------------------------------------------------------------- /src/neon.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/neon.s -------------------------------------------------------------------------------- /src/neon_static.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/neon_static.s -------------------------------------------------------------------------------- /src/patterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/patterns.h -------------------------------------------------------------------------------- /src/sequitur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/sequitur.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/types.h -------------------------------------------------------------------------------- /src/vfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/vfp.h -------------------------------------------------------------------------------- /src/vfp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/src/vfp.s -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/tests/Makefile.in -------------------------------------------------------------------------------- /tests/cpu_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/tests/cpu_test.c -------------------------------------------------------------------------------- /tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/tests/test.c -------------------------------------------------------------------------------- /tests/trig_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/ffts/HEAD/tests/trig_test.c --------------------------------------------------------------------------------