Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Syscall12 (0.12 sec)

  1. src/runtime/syscall_windows.go

    }
    
    //go:linkname syscall_Syscall12 syscall.Syscall12
    //go:nosplit
    func syscall_Syscall12(fn, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12 uintptr) (r1, r2, err uintptr) {
    	args := [...]uintptr{a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12}
    	return syscall_SyscallN(fn, args[:nargs]...)
    }
    
    //go:linkname syscall_Syscall15 syscall.Syscall15
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/runtime/os2_aix.go

    	return int32(r)
    }
    
    //go:nosplit
    func closefd(fd int32) int32 {
    	r, _ := syscall1(&libc_close, uintptr(fd))
    	return int32(r)
    }
    
    //go:nosplit
    func pipe() (r, w int32, errno int32) {
    	var p [2]int32
    	_, err := syscall1(&libc_pipe, uintptr(noescape(unsafe.Pointer(&p[0]))))
    	return p[0], p[1], int32(err)
    }
    
    // mmap calls the mmap system call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. src/runtime/sys_openbsd_ppc64.s

    	CMP	R3, $-1
    	BNE	ok
    
    	// Get error code from libc.
    	CALL	libc_errno(SB)
    	MOVW	(R3), R3
    	MOVD	R3, (9*8)(R14)		// err
    
    ok:
    	RET
    
    // syscall10 calls a function in libc on behalf of the syscall package.
    // syscall10 takes a pointer to a struct like:
    // struct {
    //	fn    uintptr
    //	a1    uintptr
    //	a2    uintptr
    //	a3    uintptr
    //	a4    uintptr
    //	a5    uintptr
    //	a6    uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. src/runtime/sys_openbsd_riscv64.s

    	MOV	$-1, X5
    	BNE	X5, X10, ok
    
    	// Get error code from libc.
    	CALL	libc_errno(SB)
    	MOVW	(X10), X10
    	MOV	X10, (9*8)(X9)		// err
    
    ok:
    	RET
    
    // syscall10 calls a function in libc on behalf of the syscall package.
    // syscall10 takes a pointer to a struct like:
    // struct {
    //	fn    uintptr
    //	a1    uintptr
    //	a2    uintptr
    //	a3    uintptr
    //	a4    uintptr
    //	a5    uintptr
    //	a6    uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top