Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CpuPpc64 (0.07 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)
Back to top