Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for I386 (0.04 sec)

  1. src/runtime/defs_netbsd.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    /*
    Input to cgo.
    
    GOARCH=amd64 go tool cgo -cdefs defs_netbsd.go defs_netbsd_amd64.go >defs_netbsd_amd64.h
    GOARCH=386 go tool cgo -cdefs defs_netbsd.go defs_netbsd_386.go >defs_netbsd_386.h
    GOARCH=arm go tool cgo -cdefs defs_netbsd.go defs_netbsd_arm.go >defs_netbsd_arm.h
    */
    
    // +godefs map __fpregset_t [644]byte
    
    package runtime
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. api/go1.23.txt

    pkg sync/atomic, method (*Uintptr) And(uintptr) uintptr #61395
    pkg sync/atomic, method (*Uintptr) Or(uintptr) uintptr #61395
    pkg syscall (windows-386), const WSAENOPROTOOPT = 10042 #62254
    pkg syscall (windows-386), const WSAENOPROTOOPT Errno #62254
    pkg syscall (windows-amd64), const WSAENOPROTOOPT = 10042 #62254
    pkg syscall (windows-amd64), const WSAENOPROTOOPT Errno #62254
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	"linux/sparc64":   true,
    	"android/386":     true,
    	"android/amd64":   true,
    	"android/arm":     true,
    	"android/arm64":   true,
    	"ios/arm64":       true,
    	"ios/amd64":       true,
    	"js/wasm":         false,
    	"wasip1/wasm":     false,
    	"netbsd/386":      true,
    	"netbsd/amd64":    true,
    	"netbsd/arm":      true,
    	"netbsd/arm64":    true,
    	"openbsd/386":     true,
    	"openbsd/amd64":   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/runtime/crash_cgo_test.go

    		t.Skipf("no EINTR on %s", runtime.GOOS)
    	case "linux":
    		if runtime.GOARCH == "386" {
    			// On linux-386 the Go signal handler sets
    			// a restorer function that is not preserved
    			// by the C sigaction call in the test,
    			// causing the signal handler to crash when
    			// returning the normal code. The test is not
    			// architecture-specific, so just skip on 386
    			// rather than doing a complicated workaround.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. src/internal/buildcfg/cfg.go

    }
    
    // GOGOARCH returns the name and value of the GO$GOARCH setting.
    // For example, if GOARCH is "amd64" it might return "GOAMD64", "v2".
    func GOGOARCH() (name, value string) {
    	switch GOARCH {
    	case "386":
    		return "GO386", GO386
    	case "amd64":
    		return "GOAMD64", fmt.Sprintf("v%d", GOAMD64)
    	case "arm":
    		return "GOARM", GOARM.String()
    	case "arm64":
    		return "GOARM64", GOARM64.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    [kubernetes-client-linux-386.tar.gz](https://dl.k8s.io/v1.29.6/kubernetes-client-linux-386.tar.gz) | 3f0951f370c03d2e849bd38039ad83bdce1caefd069e532fc1af16489bc11480ae97f7f8ba620cbb5cc0dec1a9df7387b6b9577ea5d0077253e487e7c809f9d2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

    [kubernetes-client-linux-386.tar.gz](https://dl.k8s.io/v1.30.2/kubernetes-client-linux-386.tar.gz) | 6c54486d34e9cc09f5c08b2f52dd13b0b928ba33e6d1ba9a1fb3ef14a414873596c34edca1393863ded0140839d5113cf2f42cfb434a16b587e5e455dc2e38a0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. src/make.rc

    #
    # GOHOSTARCH: The architecture for host tools (compilers and
    # binaries).  Binaries of this type must be executable on the current
    # system, so the only common reason to set this is to set
    # GOHOSTARCH=386 on an amd64 machine.
    #
    # GOARCH: The target architecture for installed packages and tools.
    #
    # GOOS: The target operating system for installed packages and tools.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	op := m[1]
    	switch fn.arch.name + "." + op {
    	case "386.FMOVLP":
    		src, dst = 8, 4
    	case "arm.MOVD":
    		src = 8
    	case "arm.MOVW":
    		src = 4
    	case "arm.MOVH", "arm.MOVHU":
    		src = 2
    	case "arm.MOVB", "arm.MOVBU":
    		src = 1
    	// LEA* opcodes don't really read the second arg.
    	// They just take the address of it.
    	case "386.LEAL":
    		dst = 4
    		addr = true
    	case "amd64.LEAQ":
    		dst = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. test/codegen/comparisons.go

    func CmpMem4(p *int) bool {
    	// amd64:`CMPQ\t\(.*\), [$]7`
    	return 7 < *p
    }
    
    func CmpMem5(p **int) {
    	// amd64:`CMPL\truntime.writeBarrier\(SB\), [$]0`
    	*p = nil
    }
    
    func CmpMem6(a []int) int {
    	// 386:`CMPL\s8\([A-Z]+\),`
    	// amd64:`CMPQ\s16\([A-Z]+\),`
    	if a[1] > a[2] {
    		return 1
    	} else {
    		return 2
    	}
    }
    
    // Check tbz/tbnz are generated when comparing against zero on arm64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top