- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for xorBytesBasic (0.16 seconds)
-
lib/fips140/v1.26.0.zip
impl.Register("subtle", "LSX", &useLSX) impl.Register("subtle", "LASX", &useLASX) } //go:noescape func xorBytesBasic(dst, a, b *byte, n int) //go:noescape func xorBytesLSX(dst, a, b *byte, n int) //go:noescape func xorBytesLASX(dst, a, b *byte, n int) func xorBytes(dst, a, b *byte, n int) { if useLASX { xorBytesLASX(dst, a, b, n) } else if useLSX { xorBytesLSX(dst, a, b, n) } else { xorBytesBasic(dst, a, b, n) } } golang.org/fips140@v1.26.0/fips140/v1.26.0/subtle/xor_loong64.s // Copyright 2024 The...
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 08 17:58:32 GMT 2026 - 660.3K bytes - Click Count (0)