vendor: Update github.com/xtaci/kcp
This commit is contained in:
4
vendor/github.com/klauspost/reedsolomon/galois_noasm.go
generated
vendored
4
vendor/github.com/klauspost/reedsolomon/galois_noasm.go
generated
vendored
@@ -4,14 +4,14 @@
|
||||
|
||||
package reedsolomon
|
||||
|
||||
func galMulSlice(c byte, in, out []byte) {
|
||||
func galMulSlice(c byte, in, out []byte, ssse3, avx2 bool) {
|
||||
mt := mulTable[c]
|
||||
for n, input := range in {
|
||||
out[n] = mt[input]
|
||||
}
|
||||
}
|
||||
|
||||
func galMulSliceXor(c byte, in, out []byte) {
|
||||
func galMulSliceXor(c byte, in, out []byte, ssse3, avx2 bool) {
|
||||
mt := mulTable[c]
|
||||
for n, input := range in {
|
||||
out[n] ^= mt[input]
|
||||
|
||||
Reference in New Issue
Block a user