Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for ARM64 (0.13 sec)

  1. src/cmd/internal/obj/util.go

    			a.WriteNameTo(w)
    			fmt.Fprintf(w, "(%v)(REG)", Rconv(int(a.Reg)))
    		} else {
    			io.WriteString(w, Rconv(int(a.Reg)))
    		}
    		if (RBaseARM64+1<<10+1<<9) /* arm64.REG_ELEM */ <= a.Reg &&
    			a.Reg < (RBaseARM64+1<<11) /* arm64.REG_ELEM_END */ {
    			fmt.Fprintf(w, "[%d]", a.Index)
    		}
    
    	case TYPE_BRANCH:
    		if a.Sym != nil {
    			fmt.Fprintf(w, "%s%s(SB)", a.Sym.Name, abiDecorate(a, abiDetail))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/cmd/link/link_test.go

    `,
    }
    
    // TestFuncAlign verifies that the address of a function can be aligned
    // with a specific value on arm64 and loong64.
    func TestFuncAlign(t *testing.T) {
    	testFuncAlignAsmSrc := testFuncAlignAsmSources[runtime.GOARCH]
    	if len(testFuncAlignAsmSrc) == 0 || runtime.GOOS != "linux" {
    		t.Skip("skipping on non-linux/{arm64,loong64} platform")
    	}
    	testenv.MustHaveGoBuild(t)
    
    	t.Parallel()
    
    	tmpdir := t.TempDir()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. test/codegen/memops.go

    	// 386/sse2: `MOVSS\t4\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), X[0-9]+`
    	//    arm64: `FMOVS\t\(R[0-9]*\)\(R[0-9]*<<2\), F[0-9]+`
    	t = x[i+1]
    	//    amd64: `MOVSS\tX[0-9]+, 4\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\)`
    	// 386/sse2: `MOVSS\tX[0-9]+, 4\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\)`
    	//    arm64: `FMOVS\tF[0-9]+, \(R[0-9]*\)\(R[0-9]*<<2\)`
    	y[i+1] = t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. cluster/images/etcd/Makefile

        BASEIMAGE?=registry.k8s.io/build-image/debian-base:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),arm)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base-arm:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),arm64)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base-arm64:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),ppc64le)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base-ppc64le:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),s390x)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasSSE42            bool // Streaming SIMD extension 4 and 4.2
    	_                   CacheLinePad
    }
    
    // ARM64 contains the supported CPU features of the
    // current ARMv8(aarch64) platform. If the current platform
    // is not arm64 then all feature flags are false.
    var ARM64 struct {
    	_           CacheLinePad
    	HasFP       bool // Floating-point instruction set (always available)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/runtime/alg.go

    	if (GOARCH == "386" || GOARCH == "amd64") &&
    		cpu.X86.HasAES && // AESENC
    		cpu.X86.HasSSSE3 && // PSHUFB
    		cpu.X86.HasSSE41 { // PINSR{D,Q}
    		initAlgAES()
    		return
    	}
    	if GOARCH == "arm64" && cpu.ARM64.HasAES {
    		initAlgAES()
    		return
    	}
    	for i := range hashkey {
    		hashkey[i] = uintptr(bootstrapRand())
    	}
    }
    
    func initAlgAES() {
    	useAeshash = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure.sh

      case "${HOST_ARCH}" in
        x86_64*|i?86_64*|amd64*)
          HOST_ARCH="amd64"
          ;;
        aHOST_arch64*|aarch64*|arm64*)
          HOST_ARCH="arm64"
          ;;
        *)
          echo "Unknown, unsupported architecture (${HOST_ARCH})." >&2
          echo "Supported architecture(s): amd64 and arm64." >&2
          echo "Bailing out." >&2
          exit 2
          ;;
      esac
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  8. pkg/test/framework/components/environment/kube/flags.go

    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    const (
    	defaultKubeConfig = "~/.kube/config"
    )
    
    const (
    	ArchAMD64 = "amd64"
    	ArchARM64 = "arm64"
    )
    
    var (
    	// Settings we will collect from the command-line.
    	settingsFromCommandLine = &Settings{
    		LoadBalancerSupported: true,
    		Architecture:          ArchAMD64,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. cluster/gce/upgrade.sh

            corefile_tool_SHA="686792ec91ad52e0761839845c7e09e02234c959b5c459b2cd358d24474c5c66"
            ;;
          aarch64*)
            host_arch=arm64
            corefile_tool_SHA="a968593d68c5564663f9068efa8c34f1baa7bd263be542a71b0b8d8dd44ad124"
            ;;
          arm64*)
            host_arch=arm64
            corefile_tool_SHA="a968593d68c5564663f9068efa8c34f1baa7bd263be542a71b0b8d8dd44ad124"
            ;;
          arm*)
            host_arch=arm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. src/time/tick_test.go

    	baseCount := 10
    	baseDelta := 20 * Millisecond
    
    	// On Darwin ARM64 the tick frequency seems limited. Issue 35692.
    	if (runtime.GOOS == "darwin" || runtime.GOOS == "ios") && runtime.GOARCH == "arm64" {
    		// The following test will run ticker count/2 times then reset
    		// the ticker to double the duration for the rest of count/2.
    		// Since tick frequency is limited on Darwin ARM64, use even
    		// number to give the ticks more time to let the test pass.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top