Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LSX (0.04 sec)

  1. 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)
    		}
    
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Aug 05 17:31:25 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.zip

    license that can be found in the LICENSE 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,...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top