Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for miblen (0.1 sec)

  1. src/runtime/os_openbsd_syscall2.go

    	if old != nil {
    		*old = r
    	}
    }
    
    func pipe2(flags int32) (r, w int32, errno int32)
    
    //go:noescape
    func setitimer(mode int32, new, old *itimerval)
    
    //go:noescape
    func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
    
    // mmap calls the mmap system call. It is implemented in assembly.
    // We only pass the lower 32 bits of file offset to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/runtime/sys_freebsd_arm64.s

    	MOVD	$SYS_madvise, R8
    	SVC
    	BCC	ok
    	MOVW	$-1, R0
    ok:
    	MOVW	R0, ret+24(FP)
    	RET
    
    // func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
    TEXT runtime·sysctl(SB),NOSPLIT,$0
    	MOVD	mib+0(FP), R0
    	MOVD	miblen+8(FP), R1
    	MOVD	out+16(FP), R2
    	MOVD	size+24(FP), R3
    	MOVD	dst+32(FP), R4
    	MOVD	ndst+40(FP), R5
    	MOVD	$SYS___sysctl, R8
    	SVC
    	BCC	ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/runtime/sys_freebsd_riscv64.s

    	MOV	$SYS_madvise, T0
    	ECALL
    	BEQ	T0, ZERO, ok
    	MOV	$-1, A0
    ok:
    	MOVW	A0, ret+24(FP)
    	RET
    
    // func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
    TEXT runtime·sysctl(SB),NOSPLIT,$0
    	MOV	mib+0(FP), A0
    	MOV	miblen+8(FP), A1
    	MOV	out+16(FP), A2
    	MOV	size+24(FP), A3
    	MOV	dst+32(FP), A4
    	MOV	ndst+40(FP), A5
    	MOV	$SYS___sysctl, T0
    	ECALL
    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

    	MOVW	n+8(FP), R5		// arg 2 - n
    	MOVV	$301, R2		// sys___thrwakeup
    	SYSCALL
    	MOVW	R2, ret+16(FP)
    	RET
    
    TEXT runtime·sysctl(SB),NOSPLIT,$0
    	MOVV	mib+0(FP), R4		// arg 1 - mib
    	MOVW	miblen+8(FP), R5	// arg 2 - miblen
    	MOVV	out+16(FP), R6		// arg 3 - out
    	MOVV	size+24(FP), R7		// arg 4 - size
    	MOVV	dst+32(FP), R8		// arg 5 - dest
    	MOVV	ndst+40(FP), R9		// arg 6 - newlen
    	MOVV	$202, R2		// sys___sysctl
    	SYSCALL
    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/runtime/sys_openbsd2.go

    //go:nosplit
    //go:cgo_unsafe_args
    func usleep_no_g(usec uint32) {
    	asmcgocall_no_g(unsafe.Pointer(abi.FuncPCABI0(usleep_trampoline)), unsafe.Pointer(&usec))
    }
    
    //go:nosplit
    //go:cgo_unsafe_args
    func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32 {
    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(sysctl_trampoline)), unsafe.Pointer(&mib))
    	KeepAlive(mib)
    	KeepAlive(out)
    	KeepAlive(size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/runtime/os_dragonfly.go

    func sigaction(sig uint32, new, old *sigactiont)
    
    //go:noescape
    func sigprocmask(how int32, new, old *sigset)
    
    //go:noescape
    func setitimer(mode int32, new, old *itimerval)
    
    //go:noescape
    func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
    
    func raiseproc(sig uint32)
    
    func lwp_gettid() int32
    func lwp_kill(pid, tid int32, sig int)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. src/runtime/sys_netbsd_arm64.s

    	SVC	$SYS___sigaltstack14
    	BCS	fail
    	RET
    fail:
    	MOVD	$0, R0
    	MOVD	R0, (R0)		// crash
    
    TEXT runtime·sysctl(SB),NOSPLIT,$0
    	MOVD	mib+0(FP), R0		// arg 1 - name
    	MOVW	miblen+8(FP), R1	// arg 2 - namelen
    	MOVD	out+16(FP), R2		// arg 3 - oldp
    	MOVD	size+24(FP), R3		// arg 4 - oldlenp
    	MOVD	dst+32(FP), R4		// arg 5 - newp
    	MOVD	ndst+40(FP), R5		// arg 6 - newlen
    	SVC	$SYS___sysctl
    	BCC	ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. src/runtime/sys_dragonfly_amd64.s

    	MOVQ	$16, DX			// arg 3 - infosize
    	MOVQ	$472, AX		// set_tls_area
    	SYSCALL
    	JCC	2(PC)
    	MOVL	$0xf1, 0xf1  // crash
    	RET
    
    TEXT runtime·sysctl(SB),NOSPLIT,$0
    	MOVQ	mib+0(FP), DI		// arg 1 - name
    	MOVL	miblen+8(FP), SI		// arg 2 - namelen
    	MOVQ	out+16(FP), DX		// arg 3 - oldp
    	MOVQ	size+24(FP), R10		// arg 4 - oldlenp
    	MOVQ	dst+32(FP), R8		// arg 5 - newp
    	MOVQ	ndst+40(FP), R9		// arg 6 - newlen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. operator/pkg/util/yaml.go

    }
    
    func diffStringList(l1, l2 []string) string {
    	var maxLen int
    	var minLen int
    	var l1Max bool
    	res := ""
    	if len(l1)-len(l2) > 0 {
    		maxLen = len(l1)
    		minLen = len(l2)
    		l1Max = true
    	} else {
    		maxLen = len(l2)
    		minLen = len(l1)
    		l1Max = false
    	}
    
    	for i := 0; i < maxLen; i++ {
    		d := ""
    		if i >= minLen {
    			if l1Max {
    				d = yamlDiff(l1[i], "")
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/sets/set_test.go

    		}
    	}
    }
    
    type randomStringAlphabet string
    
    func (a randomStringAlphabet) makeString(minLen, maxLen int) string {
    	n := minLen
    	if minLen < maxLen {
    		n += rand.Intn(maxLen - minLen)
    	}
    	var s string
    	for i := 0; i < n; i++ {
    		s += string(a[rand.Intn(len(a))])
    	}
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top