Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for libc_writev (0.2 sec)

  1. src/runtime/sys_openbsd_ppc64.s

    noerr:
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$32
    	MOVD	8(R3), R4		// arg 2 - buf
    	MOVW	16(R3), R5		// arg 3 - count
    	MOVD	0(R3), R3		// arg 1 - fd (uintptr)
    	CALL	libc_write(SB)
    	CMP	R3, $-1
    	BNE	noerr
    	CALL	libc_errno(SB)
    	MOVW	(R3), R3		// errno
    	NEG	R3, R3			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·pipe2_trampoline(SB),NOSPLIT,$32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. src/runtime/sys_openbsd_arm64.s

    noerr:
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVD	8(R0), R1		// arg 2 - buf
    	MOVW	16(R0), R2		// arg 3 - count
    	MOVW	0(R0), R0		// arg 1 - fd
    	CALL	libc_write(SB)
    	CMP	$-1, R0
    	BNE	noerr
    	CALL	libc_errno(SB)
    	MOVW	(R0), R0		// errno
    	NEG	R0, R0			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·pipe2_trampoline(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. src/runtime/sys_openbsd_riscv64.s

    noerr:
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$8
    	MOV	8(X10), X11		// arg 2 - buf
    	MOVW	16(X10), X12		// arg 3 - count
    	MOV	0(X10), X10		// arg 1 - fd (uintptr from write1)
    	CALL	libc_write(SB)
    	MOV	$-1, X5
    	BNE	X5, X10, noerr
    	CALL	libc_errno(SB)
    	MOVW	(X10), X10		// errno
    	NEG	X10			// caller expects negative errno
    noerr:
    	RET
    
    TEXT runtime·pipe2_trampoline(SB),NOSPLIT,$8
    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_darwin.go

    //go:cgo_import_dynamic libc_open open "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_close close "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_read read "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_write write "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_pipe pipe "/usr/lib/libSystem.B.dylib"
    
    //go:cgo_import_dynamic libc_mmap mmap "/usr/lib/libSystem.B.dylib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd_amd64.s

    noerr:
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVQ	8(DI), SI		// arg 2 buf
    	MOVL	16(DI), DX		// arg 3 count
    	MOVL	0(DI), DI		// arg 1 fd
    	CALL	libc_write(SB)
    	TESTL	AX, AX
    	JGE	noerr
    	CALL	libc_errno(SB)
    	MOVL	(AX), AX		// errno
    	NEGL	AX			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·pipe2_trampoline(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. src/runtime/sys_darwin_arm64.s

    	MOVW	0(R0), R0	// arg 1 fd
    	BL	libc_close(SB)
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVD	8(R0), R1	// arg 2 buf
    	MOVW	16(R0), R2	// arg 3 count
    	MOVW	0(R0), R0	// arg 1 fd
    	BL	libc_write(SB)
    	MOVD	$-1, R1
    	CMP	R0, R1
    	BNE	noerr
    	BL	libc_error(SB)
    	MOVW	(R0), R0
    	NEG	R0, R0		// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·read_trampoline(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  7. src/runtime/sys_darwin_amd64.s

    	NEGL	AX			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVQ	8(DI), SI		// arg 2 buf
    	MOVL	16(DI), DX		// arg 3 count
    	MOVQ	0(DI), DI		// arg 1 fd
    	CALL	libc_write(SB)
    	TESTL	AX, AX
    	JGE	noerr
    	CALL	libc_error(SB)
    	MOVL	(AX), AX
    	NEGL	AX			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·pipe_trampoline(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. src/runtime/sys_openbsd_arm.s

    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	4(R0), R1		// arg 2 buf
    	MOVW	8(R0), R2		// arg 3 count
    	MOVW	0(R0), R0		// arg 1 fd
    	BL	libc_write(SB)
    	CMP	$-1, R0
    	BNE	noerr
    	BL	libc_errno(SB)
    	MOVW	(R0), R0		// errno
    	RSB.CS	$0, R0			// caller expects negative errno
    noerr:
    	MOVW	R9, R13
    	RET
    
    TEXT runtime·pipe2_trampoline(SB),NOSPLIT,$0
    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

    	SUBL	$12, SP
    	MOVL	20(SP), DX		// pointer to args
    	MOVL	0(DX), AX
    	MOVL	4(DX), BX
    	MOVL	8(DX), CX
    	MOVL	AX, 0(SP)		// arg 1 - fd
    	MOVL	BX, 4(SP)		// arg 2 - buf
    	MOVL	CX, 8(SP)		// arg 3 - count
    	CALL	libc_write(SB)
    	CMPL	AX, $-1
    	JNE	noerr
    	CALL	libc_errno(SB)
    	MOVL	(AX), AX
    	NEGL	AX			// caller expects negative errno
    noerr:
    	MOVL	BP, SP
    	POPL	BP
    	RET
    
    TEXT runtime·pipe2_trampoline(SB),NOSPLIT,$0
    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