- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for LASX (0.12 sec)
-
src/cmd/asm/internal/arch/loong64.go
simd_type = loong64.LSX case reg >= loong64.REG_X0 && reg <= loong64.REG_X31: simd_type = loong64.LASX default: return errors.New("Loong64 extension: invalid LSX/LASX register: " + fmt.Sprintf("%d", reg)) } if isIndex { arng_type, ok = loong64ElemExtMap[ext] if !ok { return errors.New("Loong64 extension: invalid LSX/LASX arrangement type: " + ext) } a.Reg = loong64.REG_ELEM
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 3.8K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
file. //go:build !purego package subtle import ( "crypto/internal/fips140deps/cpu" "crypto/internal/impl" ) var useLSX = cpu.LOONG64HasLSX var useLASX = cpu.LOONG64HasLASX func init() { 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,...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)