Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Syscall12 (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SysProcIDMap", Type, 4},
    		{"SysProcIDMap.ContainerID", Field, 4},
    		{"SysProcIDMap.HostID", Field, 4},
    		{"SysProcIDMap.Size", Field, 4},
    		{"Syscall", Func, 0},
    		{"Syscall12", Func, 0},
    		{"Syscall15", Func, 0},
    		{"Syscall18", Func, 12},
    		{"Syscall6", Func, 0},
    		{"Syscall9", Func, 0},
    		{"SyscallN", Func, 18},
    		{"Sysctl", Func, 0},
    		{"SysctlUint32", Func, 0},
    		{"Sysctlnode", Type, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top