Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Syscall12 (0.17 sec)

  1. api/go1.18.txt

    pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Pdeathsig Signal
    pkg syscall (windows-386), func Syscall //deprecated
    pkg syscall (windows-386), func Syscall12 //deprecated
    pkg syscall (windows-386), func Syscall15 //deprecated
    pkg syscall (windows-386), func Syscall18 //deprecated
    pkg syscall (windows-386), func Syscall6 //deprecated
    pkg syscall (windows-386), func Syscall9 //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/runtime/sys_openbsd_arm64.s

    	CMP	$-1, R0
    	BNE	ok
    
    	// Get error code from libc.
    	CALL	libc_errno(SB)
    	MOVW	(R0), R0
    	MOVD	R0, (9*8)(R19)		// 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 Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/runtime/sys_openbsd_amd64.s

    	CALL	libc_errno(SB)
    	MOVLQSX	(AX), AX
    	MOVQ	(SP), DI
    	MOVQ	AX, (9*8)(DI) // err
    
    ok:
    	XORL	AX, AX        // no error (it's ignored anyway)
    	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 Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. src/runtime/sys_openbsd_arm.s

    	BL	libc_errno(SB)
    	MOVW	(R0), R1
    	MOVW	R1, (9*4)(R8) // err
    
    ok:
    	MOVW	$0, R0		// no error (it's ignored anyway)
    	MOVW	R9, R13
    	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 Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  9. src/runtime/sys_openbsd_386.s

    	CALL	libc_errno(SB)
    	MOVL	(AX), AX
    	MOVW	AX, (9*4)(BX)		// err
    
    ok:
    	MOVL	$0, AX			// no error (it's ignored anyway)
    	MOVL	BP, SP
    	POPL	BP
    	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 Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top