Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CpuArm64 (0.09 sec)

  1. src/cmd/internal/objfile/macho.go

    }
    
    func (f *machoFile) goarch() string {
    	switch f.macho.Cpu {
    	case macho.Cpu386:
    		return "386"
    	case macho.CpuAmd64:
    		return "amd64"
    	case macho.CpuArm:
    		return "arm"
    	case macho.CpuArm64:
    		return "arm64"
    	case macho.CpuPpc64:
    		return "ppc64"
    	}
    	return ""
    }
    
    type uint64s []uint64
    
    func (x uint64s) Len() int           { return len(x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ARM_THUMB_32BIT_BRANCH", Const, 10},
    		{"ARM_THUMB_RELOC_BR22", Const, 10},
    		{"Cpu", Type, 0},
    		{"Cpu386", Const, 0},
    		{"CpuAmd64", Const, 0},
    		{"CpuArm", Const, 3},
    		{"CpuArm64", Const, 11},
    		{"CpuPpc", Const, 3},
    		{"CpuPpc64", Const, 3},
    		{"Dylib", Type, 0},
    		{"Dylib.CompatVersion", Field, 0},
    		{"Dylib.CurrentVersion", Field, 0},
    		{"Dylib.LoadBytes", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top