├── LICENSE ├── README.md ├── xor.go ├── xor_amd64.go ├── xor_amd64.s ├── xor_test.go └── xor_unaligned.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/fastxor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/fastxor/HEAD/README.md -------------------------------------------------------------------------------- /xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/fastxor/HEAD/xor.go -------------------------------------------------------------------------------- /xor_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/fastxor/HEAD/xor_amd64.go -------------------------------------------------------------------------------- /xor_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/fastxor/HEAD/xor_amd64.s -------------------------------------------------------------------------------- /xor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/fastxor/HEAD/xor_test.go -------------------------------------------------------------------------------- /xor_unaligned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/fastxor/HEAD/xor_unaligned.go --------------------------------------------------------------------------------