Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for i386 (0.18 sec)

  1. src/debug/elf/file_test.go

    			{"", 3, 0, 28, 0, 0, "", ""},
    			{"", 3, 0, 29, 0, 0, "", ""},
    			{"crt1.c", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"<command line>", 4, 0, 65521, 0, 0, "", ""},
    			{"<built-in>", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"crtstuff.c", 4, 0, 65521, 0, 0, "", ""},
    			{"__CTOR_LIST__", 1, 0, 14, 134518436, 0, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  2. 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)
  3. .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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/internal/nistec/fiat/p384_fiat64.go

    	x384, x383 = bits.Mul64(x5, arg2[2])
    	var x385 uint64
    	var x386 uint64
    	x386, x385 = bits.Mul64(x5, arg2[1])
    	var x387 uint64
    	var x388 uint64
    	x388, x387 = bits.Mul64(x5, arg2[0])
    	var x389 uint64
    	var x390 uint64
    	x389, x390 = bits.Add64(x388, x385, uint64(0x0))
    	var x391 uint64
    	var x392 uint64
    	x391, x392 = bits.Add64(x386, x383, uint64(p384Uint1(x390)))
    	var x393 uint64
    	var x394 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_386.go

    // mkerrors.sh -m32
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m32 _const.go
    
    //go:build 386 && linux
    
    package syscall
    
    const (
    	AF_ALG                           = 0x26
    	AF_APPLETALK                     = 0x5
    	AF_ASH                           = 0x12
    	AF_ATMPVC                        = 0x8
    	AF_ATMSVC                        = 0x14
    	AF_AX25                          = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  9. src/syscall/zerrors_netbsd_386.go

    // mkerrors.sh -m32
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m32 _const.go
    
    //go:build 386 && netbsd
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x1c
    	AF_BLUETOOTH                      = 0x1f
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.5K bytes
    - Viewed (0)
  10. 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)
Back to top