Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 130 for lzcntl (0.22 sec)

  1. src/runtime/sys_netbsd_amd64.s

    	MOVL	nch+16(FP), DX
    	MOVQ	ev+24(FP), R10
    	MOVL	nev+32(FP), R8
    	MOVQ	ts+40(FP), R9
    	MOVL	$SYS___kevent50, AX
    	SYSCALL
    	JCC	2(PC)
    	NEGQ	AX
    	MOVL	AX, ret+48(FP)
    	RET
    
    // func fcntl(fd, cmd, arg int32) (int32, int32)
    TEXT runtime·fcntl(SB),NOSPLIT,$0
    	MOVL	fd+0(FP), DI	// fd
    	MOVL	cmd+4(FP), SI	// cmd
    	MOVL	arg+8(FP), DX	// arg
    	MOVL	$SYS_fcntl, AX
    	SYSCALL
    	JCC	noerr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    	}
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	return utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), flags)
    }
    
    //sys	fcntl(fd int, cmd int, arg int) (val int, err error)
    
    // FcntlInt performs a fcntl syscall on fd with the provided command and argument.
    func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  3. src/runtime/sys_freebsd_riscv64.s

    	MOVW	nch+16(FP), A2
    	MOV	ev+24(FP), A3
    	MOVW	nev+32(FP), A4
    	MOV	ts+40(FP), A5
    	MOV	$SYS_kevent, T0
    	ECALL
    	BEQ	T0, ZERO, ok
    	NEG	A0, A0
    ok:
    	MOVW	A0, ret+48(FP)
    	RET
    
    // func fcntl(fd, cmd, arg int32) (int32, int32)
    TEXT runtime·fcntl(SB),NOSPLIT,$0
    	MOVW	fd+0(FP), A0
    	MOVW	cmd+4(FP), A1
    	MOVW	arg+8(FP), A2
    	MOV	$SYS_fcntl, T0
    	ECALL
    	BEQ	T0, ZERO, noerr
    	MOV	$-1, A1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. src/runtime/sys_openbsd_mips64.s

    	MOVV	ts+40(FP), R9		// arg 6 - timeout
    	MOVV	$72, R2			// sys_kevent
    	SYSCALL
    	BEQ	R7, 2(PC)
    	SUBVU	R2, R0, R2	// caller expects negative errno
    	MOVW	R2, ret+48(FP)
    	RET
    
    // func fcntl(fd, cmd, arg int32) (int32, int32)
    TEXT runtime·fcntl(SB),NOSPLIT,$0
    	MOVW	fd+0(FP), R4	// fd
    	MOVW	cmd+4(FP), R5	// cmd
    	MOVW	arg+8(FP), R6	// arg
    	MOVV	$92, R2		// sys_fcntl
    	SYSCALL
    	MOVV	$0, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. src/syscall/mkerrors.sh

    #include <net/route.h>
    #include <netinet/in.h>
    #include <termios.h>
    #include <netinet/ip.h>
    #include <netinet/ip_mroute.h>
    '
    
    includes='
    #include <sys/types.h>
    #include <sys/file.h>
    #include <fcntl.h>
    #include <dirent.h>
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <netinet/ip.h>
    #include <netinet/ip6.h>
    #include <netinet/tcp.h>
    #include <errno.h>
    #include <sys/signal.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  6. src/runtime/sys_freebsd_arm64.s

    	MOVW	nch+16(FP), R2
    	MOVD	ev+24(FP), R3
    	MOVW	nev+32(FP), R4
    	MOVD	ts+40(FP), R5
    	MOVD	$SYS_kevent, R8
    	SVC
    	BCC	ok
    	NEG	R0, R0
    ok:
    	MOVW	R0, ret+48(FP)
    	RET
    
    // func fcntl(fd, cmd, arg int32) (int32, int32)
    TEXT runtime·fcntl(SB),NOSPLIT,$0
    	MOVW	fd+0(FP), R0
    	MOVW	cmd+4(FP), R1
    	MOVW	arg+8(FP), R2
    	MOVD	$SYS_fcntl, R8
    	SVC
    	BCC	noerr
    	MOVW	$-1, R1
    	MOVW	R1, ret+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. src/runtime/sys_freebsd_arm.s

    	MOVW ev+12(FP), R3	// eventlist
    	ADD $20, R13	// pass arg 5 and 6 on stack
    	MOVW $SYS_kevent, R7
    	SWI $0
    	RSB.CS $0, R0
    	SUB $20, R13
    	MOVW	R0, ret+24(FP)
    	RET
    
    // func fcntl(fd, cmd, arg int32) (int32, int32)
    TEXT runtime·fcntl(SB),NOSPLIT,$0
    	MOVW fd+0(FP), R0	// fd
    	MOVW cmd+4(FP), R1	// cmd
    	MOVW arg+8(FP), R2	// arg
    	MOVW $SYS_fcntl, R7
    	SWI $0
    	MOVW $0, R1
    	MOVW.CS R0, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. src/runtime/sys_netbsd_arm.s

    	MOVW R4, 4(R13)
    	MOVW ts+20(FP), R4	// timeout
    	MOVW R4, 8(R13)
    	ADD $4, R13	// pass arg 5 and 6 on stack
    	SWI $SYS___kevent50
    	RSB.CS $0, R0
    	SUB $4, R13
    	MOVW	R0, ret+24(FP)
    	RET
    
    // func fcntl(fd, cmd, args int32) int32
    TEXT runtime·fcntl(SB),NOSPLIT,$0
    	MOVW fd+0(FP), R0
    	MOVW cmd+4(FP), R1
    	MOVW arg+8(FP), R2
    	SWI $SYS_fcntl
    	MOVW $0, R1
    	MOVW.CS R0, R1
    	MOVW.CS $-1, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. src/runtime/os3_solaris.go

    func pipe2(flags int32) (r, w int32, errno int32) {
    	var p [2]int32
    	_, e := sysvicall2Err(&libc_pipe2, uintptr(noescape(unsafe.Pointer(&p))), uintptr(flags))
    	return p[0], p[1], int32(e)
    }
    
    //go:nosplit
    func fcntl(fd, cmd, arg int32) (ret int32, errno int32) {
    	r1, err := sysvicall3Err(&libc_fcntl, uintptr(fd), uintptr(cmd), uintptr(arg))
    	return int32(r1), int32(err)
    }
    
    func osyield1()
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/syscall/syscall_bsd.go

    func Futimes(fd int, tv []Timeval) (err error) {
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return futimes(fd, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    //sys	fcntl(fd int, cmd int, arg int) (val int, err error)
    //sys	fcntlPtr(fd int, cmd int, arg unsafe.Pointer) (val int, err error) = SYS_FCNTL
    //sysnb ioctl(fd int, req int, arg int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top