Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 185 for map_64 (0.44 sec)

  1. src/internal/syscall/unix/siginfo_linux_mipsx.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips || mipsle || mips64 || mips64le)
    
    package unix
    
    type siErrnoCode struct {
    	Code  int32
    	Errno int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 288 bytes
    - Viewed (0)
  2. src/syscall/asm_linux_mips64x.s

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    #include "textflag.h"
    
    //
    // System calls for mips64, Linux
    //
    
    // func rawVforkSyscall(trap, a1, a2, a3 uintptr) (r1, err uintptr)
    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-48
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 985 bytes
    - Viewed (0)
  3. src/internal/syscall/unix/at_fstatat.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || (linux && !loong64) || netbsd || (openbsd && mips64)
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func Fstatat(dirfd int, path string, stat *syscall.Stat_t, flags int) error {
    	var p *byte
    	p, err := syscall.BytePtrFromString(path)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 646 bytes
    - Viewed (0)
  4. src/syscall/syscall_openbsd1.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build openbsd && mips64
    
    package syscall
    
    //sys	readlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_READ
    //sys	Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK
    //sys	getcwd(buf []byte) (n int, err error) = SYS___GETCWD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 534 bytes
    - Viewed (0)
  5. src/cmd/link/internal/mips64/obj.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package mips64
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    	"internal/buildcfg"
    )
    
    func Init() (*sys.Arch, ld.Arch) {
    	arch := sys.ArchMIPS64
    	musl := "/lib/ld-musl-mips64.so.1"
    	if buildcfg.GOARCH == "mips64le" {
    		arch = sys.ArchMIPS64LE
    		musl = "/lib/ld-musl-mips64el.so.1"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/internal/syscall/unix/getentropy_openbsd.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build openbsd && !mips64
    
    package unix
    
    import _ "unsafe" // for linkname
    
    // GetEntropy calls the OpenBSD getentropy system call.
    func GetEntropy(p []byte) error {
    	return getentropy(p)
    }
    
    //go:linkname getentropy syscall.getentropy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 16:59:38 UTC 2022
    - 431 bytes
    - Viewed (0)
  7. src/internal/runtime/syscall/defs_linux_mips64x.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    package syscall
    
    const (
    	SYS_MPROTECT      = 5010
    	SYS_FCNTL         = 5070
    	SYS_EPOLL_CTL     = 5208
    	SYS_EPOLL_PWAIT   = 5272
    	SYS_EPOLL_CREATE1 = 5285
    	SYS_EPOLL_PWAIT2  = 5441
    	SYS_EVENTFD2      = 5284
    
    	EFD_NONBLOCK = 0x80
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 538 bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadelf/ldelf.go

    		MIPS | uint32(elf.R_MIPS_GOT_OFST)<<16,
    		MIPS64 | uint32(elf.R_MIPS_HI16)<<16,
    		MIPS64 | uint32(elf.R_MIPS_LO16)<<16,
    		MIPS64 | uint32(elf.R_MIPS_GOT16)<<16,
    		MIPS64 | uint32(elf.R_MIPS_GOT_HI16)<<16,
    		MIPS64 | uint32(elf.R_MIPS_GOT_LO16)<<16,
    		MIPS64 | uint32(elf.R_MIPS_GPREL16)<<16,
    		MIPS64 | uint32(elf.R_MIPS_GOT_PAGE)<<16,
    		MIPS64 | uint32(elf.R_MIPS_JALR)<<16,
    		MIPS64 | uint32(elf.R_MIPS_GOT_OFST)<<16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/sysvshm_linux.go

    // SysvShmCtl performs control operations on the shared memory segment
    // specified by id.
    func SysvShmCtl(id, cmd int, desc *SysvShmDesc) (result int, err error) {
    	if runtime.GOARCH == "arm" ||
    		runtime.GOARCH == "mips64" || runtime.GOARCH == "mips64le" {
    		cmd |= ipc_64
    	}
    
    	return shmctl(id, cmd, desc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 521 bytes
    - Viewed (0)
  10. src/internal/syscall/unix/eaccess_bsd.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || freebsd || netbsd || (openbsd && mips64)
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func faccessat(dirfd int, path string, mode uint32, flags int) error {
    	p, err := syscall.BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:36:52 UTC 2024
    - 708 bytes
    - Viewed (0)
Back to top