Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Cpu386 (0.61 sec)

  1. src/debug/macho/file_test.go

    	hdr         FileHeader
    	loads       []any
    	sections    []*SectionHeader
    	relocations map[string][]Reloc
    }
    
    var fileTests = []fileTest{
    	{
    		"testdata/gcc-386-darwin-exec.base64",
    		FileHeader{0xfeedface, Cpu386, 0x3, 0x2, 0xc, 0x3c0, 0x85},
    		[]any{
    			&SegmentHeader{LoadCmdSegment, 0x38, "__PAGEZERO", 0x0, 0x1000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	// TODO: This is not ideal because the host architecture may not be the one
    	// that was profiled. E.g. an amd64 host can profile a 386 program.
    	switch runtime.GOARCH {
    	case "386":
    		arch = macho.Cpu386
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top