Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CpuPpc64 (0.2 sec)

  1. src/debug/macho/macho.go

    	CpuArm   Cpu = 12
    	CpuArm64 Cpu = CpuArm | cpuArch64
    	CpuPpc   Cpu = 18
    	CpuPpc64 Cpu = CpuPpc | cpuArch64
    )
    
    var cpuStrings = []intName{
    	{uint32(Cpu386), "Cpu386"},
    	{uint32(CpuAmd64), "CpuAmd64"},
    	{uint32(CpuArm), "CpuArm"},
    	{uint32(CpuArm64), "CpuArm64"},
    	{uint32(CpuPpc), "CpuPpc"},
    	{uint32(CpuPpc64), "CpuPpc64"},
    }
    
    func (i Cpu) String() string   { return stringName(uint32(i), cpuStrings, false) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/internal/objfile/macho.go

    	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) }
    func (x uint64s) Swap(i, j int)      { x[i], x[j] = x[j], x[i] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	case "amd64", "amd64p32":
    		arch = macho.CpuAmd64
    	case "arm", "armbe", "arm64", "arm64be":
    		arch = macho.CpuArm
    	case "ppc":
    		arch = macho.CpuPpc
    	case "ppc64", "ppc64le":
    		arch = macho.CpuPpc64
    	default:
    		return nil, fmt.Errorf("unsupported host architecture for %s: %s", name, runtime.GOARCH)
    	}
    	for i := range of.Arches {
    		if of.Arches[i].Cpu == arch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. api/go1.3.txt

    pkg debug/macho, const CpuArm = 12
    pkg debug/macho, const CpuArm Cpu
    pkg debug/macho, const CpuPpc = 18
    pkg debug/macho, const CpuPpc Cpu
    pkg debug/macho, const CpuPpc64 = 16777234
    pkg debug/macho, const CpuPpc64 Cpu
    pkg debug/macho, const MagicFat = 3405691582
    pkg debug/macho, const MagicFat uint32
    pkg debug/macho, const TypeBundle = 8
    pkg debug/macho, const TypeBundle Type
    pkg debug/macho, const TypeDylib = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"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},
    		{"Dylib.Name", Field, 0},
    		{"Dylib.Time", 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