Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for I386 (0.03 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	}
    
    	var arch macho.Cpu
    	// Use the host architecture.
    	// 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. src/cmd/link/link_test.go

    	// Test that PE rsrc section is handled correctly (issue 39658).
    	testenv.MustHaveGoBuild(t)
    
    	if (runtime.GOARCH != "386" && runtime.GOARCH != "amd64") || runtime.GOOS != "windows" {
    		// This test is limited to amd64 and 386, because binutils is limited as such
    		t.Skipf("this is only for windows/amd64 and windows/386")
    	}
    
    	t.Parallel()
    
    	tmpdir := t.TempDir()
    
    	pkgdir := filepath.Join("testdata", "pe-binutils")
    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. src/internal/syscall/windows/syscall_windows.go

    	ChangedTime    int64
    	FileAttributes uint32
    
    	// Pad out to 8-byte alignment.
    	//
    	// Without this padding, TestChmod fails due to an argument validation error
    	// in SetFileInformationByHandle on windows/386.
    	//
    	// https://learn.microsoft.com/en-us/cpp/build/reference/zp-struct-member-alignment?view=msvc-170
    	// says that “The C/C++ headers in the Windows SDK assume the platform's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

        X370,
        X371,
        X372,
        X373,
        X374,
        X375,
        X376,
        X377,
        X378,
        X379,
        X380,
        X381,
        X382,
        X383,
        X384,
        X385,
        X386,
        X387,
        X388,
        X389,
        X390,
        X391,
        X392,
        X393,
        X394,
        X395,
        X396,
        X397,
        X398,
        X399,
        X400,
        X401,
        X402,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. hack/lib/golang.sh

    # library is precompiled for in build/build-image/cross/Dockerfile
    readonly KUBE_SUPPORTED_CLIENT_PLATFORMS=(
      linux/amd64
      linux/386
      linux/arm
      linux/arm64
      linux/s390x
      linux/ppc64le
      darwin/amd64
      darwin/arm64
      windows/amd64
      windows/386
      windows/arm64
    )
    
    # Which platforms we should compile test targets for.
    # Not all client platforms need these tests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. src/runtime/mbarrier.go

    // st [slot], ptr          st [slotmark], 1
    //
    // ld r1, [slotmark]       ld r2, [slot]
    //
    // Without an expensive memory barrier between the st and the ld, the final
    // result on most HW (including 386/amd64) can be r1==r2==0. This is a classic
    // example of what can happen when loads are allowed to be reordered with older
    // stores (avoiding such reorderings lies at the heart of the classic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    //			offset = second register
    //
    //	[reg, reg, reg-reg]
    //		Register list for ARM, ARM64, 386/AMD64.
    //		Encoding:
    //			type = TYPE_REGLIST
    //		On ARM:
    //			offset = bit mask of registers in list; R0 is low bit.
    //		On ARM64:
    //			offset = register count (Q:size) | arrangement (opcode) | first register
    //		On 386/AMD64:
    //			reg = range low register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/internal/testenv/testenv.go

    // environment might cause environment checks to behave erratically.
    var origEnv = os.Environ()
    
    // Builder reports the name of the builder running this test
    // (for example, "linux-amd64" or "windows-386-gce").
    // If the test is not running on the build infrastructure,
    // Builder returns the empty string.
    func Builder() string {
    	return os.Getenv("GO_BUILDER_NAME")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cfg/cfg.go

    func GetArchEnv() (key, val string, changed bool) {
    	switch Goarch {
    	case "arm":
    		return "GOARM", GOARM, goARMChanged
    	case "arm64":
    		return "GOARM64", GOARM64, goARM64Changed
    	case "386":
    		return "GO386", GO386, go386Changed
    	case "amd64":
    		return "GOAMD64", GOAMD64, goAMD64Changed
    	case "mips", "mipsle":
    		return "GOMIPS", GOMIPS, goMIPSChanged
    	case "mips64", "mips64le":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/op.go

    	unsafePoint       bool      // this op is an unsafe point, i.e. not safe for async preemption
    	symEffect         SymEffect // effect this op has on symbol in aux
    	scale             uint8     // amd64/386 indexed load scale
    }
    
    type inputInfo struct {
    	idx  int     // index in Args array
    	regs regMask // allowed input registers
    }
    
    type outputInfo struct {
    	idx  int     // index in output tuple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top