├── .gitignore ├── Makefile ├── README.md ├── SSE2NEON.h ├── SSE2NEON ├── SSE2NEON.sln └── SSE2NEON │ ├── .oracle_jre_usage │ └── c8f967413d920efe.timestamp │ ├── AndroidManifest.xml │ ├── SSE2NEON.vcxproj │ ├── SSE2NEON.vcxproj.filters │ ├── jni │ └── SSE2NEON_TEST.cpp │ ├── res │ └── values │ │ └── strings.xml │ └── src │ └── sse2neon │ └── test │ └── SSE2NEON.java ├── SSE2NEONBinding.cpp ├── SSE2NEONBinding.h ├── SSE2NEONTEST.cpp ├── SSE2NEONTEST.h ├── compiler ├── VC11WIN32 │ ├── SSE2NEON.sln │ └── SSE2NEON.vcxproj ├── VC11WIN64 │ ├── SSE2NEON.sln │ ├── SSE2NEON.vcxproj │ └── SSE2NEON.vcxproj.filters ├── vc10win64 │ ├── SSE2NEON.sln │ ├── SSE2NEON.vcxproj │ └── SSE2NEON.vcxproj.filters └── xpj │ ├── SSE2NEON.xpj │ ├── create_projects.cmd │ └── xpj4.exe └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/README.md -------------------------------------------------------------------------------- /SSE2NEON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEON.h -------------------------------------------------------------------------------- /SSE2NEON/SSE2NEON.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEON/SSE2NEON.sln -------------------------------------------------------------------------------- /SSE2NEON/SSE2NEON/.oracle_jre_usage/c8f967413d920efe.timestamp: -------------------------------------------------------------------------------- 1 | C:\NVPACK\jdk1.8.0_77\jre 2 | 1490807943647 3 | -------------------------------------------------------------------------------- /SSE2NEON/SSE2NEON/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEON/SSE2NEON/AndroidManifest.xml -------------------------------------------------------------------------------- /SSE2NEON/SSE2NEON/SSE2NEON.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEON/SSE2NEON/SSE2NEON.vcxproj -------------------------------------------------------------------------------- /SSE2NEON/SSE2NEON/SSE2NEON.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEON/SSE2NEON/SSE2NEON.vcxproj.filters -------------------------------------------------------------------------------- /SSE2NEON/SSE2NEON/jni/SSE2NEON_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEON/SSE2NEON/jni/SSE2NEON_TEST.cpp -------------------------------------------------------------------------------- /SSE2NEON/SSE2NEON/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEON/SSE2NEON/res/values/strings.xml -------------------------------------------------------------------------------- /SSE2NEON/SSE2NEON/src/sse2neon/test/SSE2NEON.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEON/SSE2NEON/src/sse2neon/test/SSE2NEON.java -------------------------------------------------------------------------------- /SSE2NEONBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEONBinding.cpp -------------------------------------------------------------------------------- /SSE2NEONBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEONBinding.h -------------------------------------------------------------------------------- /SSE2NEONTEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEONTEST.cpp -------------------------------------------------------------------------------- /SSE2NEONTEST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/SSE2NEONTEST.h -------------------------------------------------------------------------------- /compiler/VC11WIN32/SSE2NEON.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/VC11WIN32/SSE2NEON.sln -------------------------------------------------------------------------------- /compiler/VC11WIN32/SSE2NEON.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/VC11WIN32/SSE2NEON.vcxproj -------------------------------------------------------------------------------- /compiler/VC11WIN64/SSE2NEON.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/VC11WIN64/SSE2NEON.sln -------------------------------------------------------------------------------- /compiler/VC11WIN64/SSE2NEON.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/VC11WIN64/SSE2NEON.vcxproj -------------------------------------------------------------------------------- /compiler/VC11WIN64/SSE2NEON.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/VC11WIN64/SSE2NEON.vcxproj.filters -------------------------------------------------------------------------------- /compiler/vc10win64/SSE2NEON.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/vc10win64/SSE2NEON.sln -------------------------------------------------------------------------------- /compiler/vc10win64/SSE2NEON.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/vc10win64/SSE2NEON.vcxproj -------------------------------------------------------------------------------- /compiler/vc10win64/SSE2NEON.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/vc10win64/SSE2NEON.vcxproj.filters -------------------------------------------------------------------------------- /compiler/xpj/SSE2NEON.xpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/xpj/SSE2NEON.xpj -------------------------------------------------------------------------------- /compiler/xpj/create_projects.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/xpj/create_projects.cmd -------------------------------------------------------------------------------- /compiler/xpj/xpj4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/compiler/xpj/xpj4.exe -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jratcliff63367/sse2neon/HEAD/main.cpp --------------------------------------------------------------------------------