syncthing/vendor/github.com/klauspost/reedsolomon/galois_noasm.go

20 lines
384 B
Go
Raw Normal View History

//+build !amd64 noasm appengine
// Copyright 2015, Klaus Post, see LICENSE for details.
package reedsolomon
2017-03-07 13:28:09 +00:00
func galMulSlice(c byte, in, out []byte, ssse3, avx2 bool) {
mt := mulTable[c]
for n, input := range in {
out[n] = mt[input]
}
}
2017-03-07 13:28:09 +00:00
func galMulSliceXor(c byte, in, out []byte, ssse3, avx2 bool) {
mt := mulTable[c]
for n, input := range in {
out[n] ^= mt[input]
}
}