├── .gitignore ├── LICENSE ├── Makefile ├── README.rst ├── asm └── sse4-string-instr.S ├── bits.cpp ├── headers.h ├── is_xdigit.cpp ├── memcmp.cpp ├── strchr.cpp ├── strcmp.cpp ├── strlen.cpp ├── strrchr.cpp ├── strtolower.cpp └── unittests.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | unittests 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/README.rst -------------------------------------------------------------------------------- /asm/sse4-string-instr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/asm/sse4-string-instr.S -------------------------------------------------------------------------------- /bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/bits.cpp -------------------------------------------------------------------------------- /headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/headers.h -------------------------------------------------------------------------------- /is_xdigit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/is_xdigit.cpp -------------------------------------------------------------------------------- /memcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/memcmp.cpp -------------------------------------------------------------------------------- /strchr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/strchr.cpp -------------------------------------------------------------------------------- /strcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/strcmp.cpp -------------------------------------------------------------------------------- /strlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/strlen.cpp -------------------------------------------------------------------------------- /strrchr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/strrchr.cpp -------------------------------------------------------------------------------- /strtolower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/strtolower.cpp -------------------------------------------------------------------------------- /unittests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/simd-string/HEAD/unittests.cpp --------------------------------------------------------------------------------