Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for I386 (0.08 sec)

  1. src/cmd/link/internal/ld/elf.go

    		d.AddUint32(target.Arch, uint32(len(ldr.Data(s))))
    
    		/* type */
    		var t uint8
    
    		// TODO(mwhudson): presumably the behavior should actually be the same on both arm and 386.
    		if target.Arch.Family == sys.I386 && cgoexp && st == sym.STEXT {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_FUNC)
    		} else if target.Arch.Family == sys.ARM && cgoeDynamic && st == sym.STEXT {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_FUNC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. .bazelrc

    build:ios_sim_arm64 --config=ios
    build:ios_sim_arm64 --cpu=ios_sim_arm64
    build:ios_x86_64 --config=ios
    build:ios_x86_64 --cpu=ios_x86_64
    build:ios_fat --config=ios
    build:ios_fat --ios_multi_cpus=armv7,arm64,i386,x86_64
    
    # Config to use a mostly-static build and disable modular op registration
    # support (this will revert to loading TensorFlow with RTLD_GLOBAL in Python).
    # By default, TensorFlow will build with a dependence on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    #ifdef GOOS_darwin
    #define NEED_OS_SUPPORT_AX V3_OS_SUPPORT_AX
    // These values are from:
    // https://github.com/apple/darwin-xnu/blob/xnu-4570.1.46/osfmk/i386/cpu_capabilities.h
    #define commpage64_base_address         0x00007fffffe00000
    #define commpage64_cpu_capabilities64   (commpage64_base_address+0x010)
    #define commpage64_version              (commpage64_base_address+0x01E)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	}
    	return flags
    }
    
    // hostlinkArchArgs returns arguments to pass to the external linker
    // based on the architecture.
    func hostlinkArchArgs(arch *sys.Arch) []string {
    	switch arch.Family {
    	case sys.I386:
    		return []string{"-m32"}
    	case sys.AMD64:
    		if buildcfg.GOOS == "darwin" {
    			return []string{"-arch", "x86_64", "-m64"}
    		}
    		return []string{"-m64"}
    	case sys.S390X:
    		return []string{"-m64"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go

    // go run mksyscall.go -l32 -openbsd -libc -tags openbsd,386 syscall_bsd.go syscall_openbsd.go syscall_openbsd_386.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build openbsd && 386
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    func TestDuplicateGlobalAsmSymbols(t *testing.T) {
    	skipIfGccgo(t, "gccgo does not use cmd/asm")
    	tooSlow(t, "links a binary with cgo dependencies")
    	if runtime.GOARCH != "386" && runtime.GOARCH != "amd64" {
    		t.Skipf("skipping test on %s", runtime.GOARCH)
    	}
    	testenv.MustHaveCGO(t)
    
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    
    	asm := `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. src/syscall/syscall_windows.go

    	} else {
    		// Different 32-bit systems disgaree about whether distToMove starts 8-byte aligned.
    		switch runtime.GOARCH {
    		default:
    			panic("unsupported 32-bit architecture")
    		case "386":
    			// distToMove is a LARGE_INTEGER, which is 64 bits.
    			_, _, e1 = Syscall6(procSetFilePointerEx.Addr(), 5, uintptr(handle), uintptr(distToMove), uintptr(distToMove>>32), uintptr(unsafe.Pointer(newFilePointer)), uintptr(whence), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertNotEquals(
                    pom.getBasedir().toURI().toString(),
                    pom.getValue("properties/prop1").toString());
        }
    
        /* MNG-6386 */
        @Test
        void testInterpolationOfRfc3986BaseUri() throws Exception {
            PomTestWrapper pom = buildPom("baseuri-interpolation/pom.xml");
            String prop1 = pom.getValue("properties/prop1").toString();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    		if goos == "darwin" {
    			return []string{"-arch", "x86_64", "-m64"}
    		}
    		return []string{"-m64"}
    	case "arm64":
    		if goos == "darwin" {
    			return []string{"-arch", "arm64"}
    		}
    	case "386":
    		return []string{"-m32"}
    	case "arm":
    		return []string{"-marm"} // not thumb
    	case "s390":
    		return []string{"-m31"}
    	case "s390x":
    		return []string{"-m64"}
    	case "mips64", "mips64le":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top