Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for map_64 (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    // go run mksyscall.go -openbsd -libc -tags openbsd,mips64 syscall_bsd.go syscall_openbsd.go syscall_openbsd_mips64.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build openbsd && mips64
    
    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.5K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    			},
    		},
    	},
    	{
    		"testdata/go-relocation-test-gcc492-mips64.obj",
    		[]relocationTestEntry{
    			{
    				entry: &dwarf.Entry{
    					Offset:   0xb,
    					Tag:      dwarf.TagCompileUnit,
    					Children: true,
    					Field: []dwarf.Field{
    						{Attr: dwarf.AttrProducer, Val: "GNU C 4.9.2 -meb -mabi=64 -march=mips3 -mtune=mips64 -mllsc -mno-shared -g", Class: dwarf.ClassString},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go

    // mkerrors.sh -m64
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips64 && openbsd
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -m64 _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_BLUETOOTH                      = 0x20
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	// address above 1<<47 (which we never do).
    	//
    	// arm64 hardware (as of ARMv8) limits user addresses to 48
    	// bits, in the range [0, 1<<48).
    	//
    	// ppc64, mips64, and s390x support arbitrary 64 bit addresses
    	// in hardware. On Linux, Go leans on stricter OS limits. Based
    	// on Linux's processor.h, the user address space is limited as
    	// follows on 64-bit architectures:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // originally tried to generate it via unix/linux/types.go with "type
    // fileHandle C.struct_file_handle" but that generated empty structs
    // for mips64 and mips64le. Instead, hard code it for now (it's the
    // same everywhere else) until the mips64 generator issue is fixed.
    type fileHandle struct {
    	Bytes uint32
    	Type  int32
    }
    
    // FileHandle represents the C struct file_handle used by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    }
    
    func (m *mmapper) Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error) {
    	if length <= 0 {
    		return nil, EINVAL
    	}
    
    	// Set __MAP_64 by default
    	flags |= __MAP_64
    
    	// Map the requested memory.
    	addr, errno := m.mmap(0, uintptr(length), prot, flags, fd, offset)
    	if errno != nil {
    		return nil, errno
    	}
    
    	// Slice memory layout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    		}
    	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":
    		if gomips64 == "hardfloat" {
    			return []string{"-mabi=64", "-mhard-float"}
    		} else if gomips64 == "softfloat" {
    			return []string{"-mabi=64", "-msoft-float"}
    		}
    	case "mips", "mipsle":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    		return false
    	}
    	// Internally linking cgo is incomplete on some architectures.
    	// https://golang.org/issue/10373
    	// https://golang.org/issue/14449
    	if goarch == "loong64" || goarch == "mips64" || goarch == "mips64le" || goarch == "mips" || goarch == "mipsle" || goarch == "riscv64" {
    		return false
    	}
    	if goos == "aix" {
    		// linkmode=internal isn't supported.
    		return false
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    		"amd64":   {"GOAMD64", "v1", "v2", "v3", "v4"},
    		"arm":     {"GOARM", "5", "6", "7", "7,softfloat"},
    		"arm64":   {"GOARM64", "v8.0", "v8.1"},
    		"loong64": {},
    		"mips":    {"GOMIPS", "hardfloat", "softfloat"},
    		"mips64":  {"GOMIPS64", "hardfloat", "softfloat"},
    		"ppc64":   {"GOPPC64", "power8", "power9", "power10"},
    		"ppc64le": {"GOPPC64", "power8", "power9", "power10"},
    		"ppc64x":  {}, // A pseudo-arch representing both ppc64 and ppc64le
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    		return sz <= 16 || (sz < 1024 && disjoint(dst, sz, src, sz))
    	case "386", "arm64":
    		return sz <= 8
    	case "s390x", "ppc64", "ppc64le":
    		return sz <= 8 || disjoint(dst, sz, src, sz)
    	case "arm", "loong64", "mips", "mips64", "mipsle", "mips64le":
    		return sz <= 4
    	}
    	return false
    }
    func IsInlinableMemmove(dst, src *Value, sz int64, c *Config) bool {
    	return isInlinableMemmove(dst, src, sz, c)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top