Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 562 for arm64e (0.21 sec)

  1. src/internal/cpu/cpu_arm64.go

    func doinit() {
    	options = []option{
    		{Name: "aes", Feature: &ARM64.HasAES},
    		{Name: "pmull", Feature: &ARM64.HasPMULL},
    		{Name: "sha1", Feature: &ARM64.HasSHA1},
    		{Name: "sha2", Feature: &ARM64.HasSHA2},
    		{Name: "sha512", Feature: &ARM64.HasSHA512},
    		{Name: "crc32", Feature: &ARM64.HasCRC32},
    		{Name: "atomics", Feature: &ARM64.HasATOMICS},
    		{Name: "cpuid", Feature: &ARM64.HasCPUID},
    		{Name: "isNeoverse", Feature: &ARM64.IsNeoverse},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 14:08:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. api/go1.14.txt

    pkg runtime (freebsd-arm64), const GOOS = "freebsd"
    pkg runtime (freebsd-arm64-cgo), const GOARCH = "arm64"
    pkg runtime (freebsd-arm64-cgo), const GOOS = "freebsd"
    pkg strconv (freebsd-arm64), const IntSize = 64
    pkg strconv (freebsd-arm64-cgo), const IntSize = 64
    pkg syscall (freebsd-arm64), const AF_APPLETALK = 16
    pkg syscall (freebsd-arm64), const AF_APPLETALK ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg runtime (darwin-arm64), const GOOS = "darwin"
    pkg runtime (darwin-arm64-cgo), const GOARCH = "arm64"
    pkg runtime (darwin-arm64-cgo), const GOOS = "darwin"
    pkg strconv (darwin-arm64), const IntSize = 64
    pkg strconv (darwin-arm64-cgo), const IntSize = 64
    pkg syscall (darwin-arm64), const AF_APPLETALK = 16
    pkg syscall (darwin-arm64), const AF_APPLETALK ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  4. src/internal/buildcfg/cfg_test.go

    	old_goarch := GOARCH
    	old_goarm64 := GOARM64
    
    	GOARCH = "arm64"
    
    	os.Setenv("GOARM64", "v9.5")
    	GOARM64 = goarm64()
    	tags := gogoarchTags()
    	want := []string{"arm64.v9.0", "arm64.v9.1", "arm64.v9.2", "arm64.v9.3", "arm64.v9.4", "arm64.v9.5",
    		"arm64.v8.0", "arm64.v8.1", "arm64.v8.2", "arm64.v8.3", "arm64.v8.4", "arm64.v8.5", "arm64.v8.6", "arm64.v8.7", "arm64.v8.8", "arm64.v8.9"}
    	if len(tags) != len(want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. test/codegen/comparisons.go

    	}
    	// arm64:`CMN`,-`CMP`
    	if b+c != 0 {
    		c5 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if a == -c {
    		c6 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if b != -d {
    		c7 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if a*b+c == 0 {
    		c8 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if a*c+b != 0 {
    		c9 = 1
    	}
    	// arm64:`CMP`,-`CMN`
    	if b*c-a == 0 {
    		c10 = 1
    	}
    	// arm64:`CMP`,-`CMN`
    	if a*d-b != 0 {
    		c11 = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. test/codegen/condmove.go

    	} else {
    		x0 = b + 1
    	}
    	// arm64:"CSINC\tMI", -"CSEL"
    	r0 = x0
    
    	if s <= t {
    		x1 = a
    	} else {
    		x1 = ^b
    	}
    	// arm64:"CSINV\tLS", -"CSEL"
    	r1 = x1
    
    	if s > t {
    		x2 = a
    	} else {
    		x2 = -b
    	}
    	// arm64:"CSNEG\tMI", -"CSEL"
    	r2 = x2
    
    	if s >= t {
    		x3 = -1
    	} else {
    		x3 = 0
    	}
    	// arm64:"CSETM\tLS", -"CSEL"
    	r3 = x3
    
    	if s == t {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:57:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. test/codegen/mathbits.go

    func RotateLeft16(n uint16, s int) uint16 {
    	// amd64:"ROLW" 386:"ROLW"
    	// arm64:"RORW",-"CSEL"
    	return bits.RotateLeft16(n, s)
    }
    
    func RotateLeft8(n uint8, s int) uint8 {
    	// amd64:"ROLB" 386:"ROLB"
    	// arm64:"LSL","LSR",-"CSEL"
    	return bits.RotateLeft8(n, s)
    }
    
    func RotateLeftVariable(n uint, m int) uint {
    	// amd64:"ROLQ"
    	// arm64:"ROR"
    	// ppc64x:"ROTL"
    	// s390x:"RLLG"
    	// wasm:"I64Rotl"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/endtoend_test.go

    func TestARMErrors(t *testing.T) {
    	testErrors(t, "arm", "armerror")
    }
    
    func TestARM64EndToEnd(t *testing.T) {
    	testEndToEnd(t, "arm64", "arm64")
    }
    
    func TestARM64Encoder(t *testing.T) {
    	testEndToEnd(t, "arm64", "arm64enc")
    }
    
    func TestARM64Errors(t *testing.T) {
    	testErrors(t, "arm64", "arm64error")
    }
    
    func TestAMD64EndToEnd(t *testing.T) {
    	testEndToEnd(t, "amd64", "amd64")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. test/codegen/bitfield.go

    }
    
    func sbfx4(x int16) int64 {
    	return int64(x) >> 3 // arm64:"SBFX\t[$]3, R[0-9]+, [$]13",-"ASR"
    }
    
    func sbfx5(x int8) int64 {
    	return int64(x) >> 3 // arm64:"SBFX\t[$]3, R[0-9]+, [$]5",-"ASR"
    }
    
    func sbfx6(x int32) int64 {
    	return int64(x >> 30) // arm64:"SBFX\t[$]30, R[0-9]+, [$]2"
    }
    
    func sbfx7(x int16) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  10. src/hash/crc32/crc32_arm64.go

    	if !cpu.ARM64.HasCRC32 {
    		panic("arch-specific crc32 instruction for Castagnoli not available")
    	}
    }
    
    func archUpdateCastagnoli(crc uint32, p []byte) uint32 {
    	if !cpu.ARM64.HasCRC32 {
    		panic("arch-specific crc32 instruction for Castagnoli not available")
    	}
    
    	return ^castagnoliUpdate(^crc, p)
    }
    
    func archAvailableIEEE() bool {
    	return cpu.ARM64.HasCRC32
    }
    
    func archInitIEEE() {
    	if !cpu.ARM64.HasCRC32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 05:31:01 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top