Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 162 for pages64 (0.14 sec)

  1. src/sort/gen_sort_variants.go

    // Storage Merging by Symmetric Comparisons", in Susanne Albers and Tomasz
    // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in
    // Computer Science, pages 714-723. Springer, 2004.
    //
    // Let M = m-a and N = b-n. Wolog M < N.
    // The recursion depth is bound by ceil(log(N+M)).
    // The algorithm needs O(M*log(N/M + 1)) calls to data.Less.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	// Each word of ptrdata needs one bit in the bitmap.
    	bitmapBytes := divRoundUp(ptrdata, 8*goarch.PtrSize)
    	// Compute the number of pages needed for bitmapBytes.
    	pages := divRoundUp(bitmapBytes, pageSize)
    	s := mheap_.allocManual(pages, spanAllocPtrScalarBits)
    	runGCProg(addb(prog, 4), (*byte)(unsafe.Pointer(s.startAddr)))
    	return s
    }
    func dematerializeGCProg(s *mspan) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/runtime/sys_openbsd_amd64.s

    	RET
    
    TEXT runtime·madvise_trampoline(SB), NOSPLIT, $0
    	MOVQ	8(DI), SI	// arg 2 len
    	MOVL	16(DI), DX	// arg 3 advice
    	MOVQ	0(DI), DI	// arg 1 addr
    	CALL	libc_madvise(SB)
    	// ignore failure - maybe pages are locked
    	RET
    
    TEXT runtime·open_trampoline(SB),NOSPLIT,$0
    	MOVL	8(DI), SI		// arg 2 - flags
    	MOVL	12(DI), DX		// arg 3 - mode
    	MOVQ	0(DI), DI		// arg 1 - path
    	XORL	AX, AX			// vararg: say "no float args"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. src/runtime/gc_test.go

    var a bool
    
    //go:noinline
    func testIfaceEqual(x any) {
    	if x == "abc" {
    		a = true
    	}
    }
    
    func TestPageAccounting(t *testing.T) {
    	// Grow the heap in small increments. This used to drop the
    	// pages-in-use count below zero because of a rounding
    	// mismatch (golang.org/issue/15022).
    	const blockSize = 64 << 10
    	blocks := make([]*[blockSize]byte, (64<<20)/blockSize)
    	for i := range blocks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd_riscv64.s

    	RET
    
    TEXT runtime·madvise_trampoline(SB),NOSPLIT,$8
    	MOV	8(X10), X11		// arg 2 - len
    	MOVW	16(X10), X12		// arg 3 - advice
    	MOV	0(X10), X10		// arg 1 - addr
    	CALL	libc_madvise(SB)
    	// ignore failure - maybe pages are locked
    	RET
    
    TEXT runtime·open_trampoline(SB),NOSPLIT,$8
    	MOVW	8(X10), X11		// arg 2 - flags
    	MOVW	12(X10), X12		// arg 3 - mode
    	MOV	0(X10), X10		// arg 1 - path
    	MOV	$0, X13			// varargs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. src/syscall/exec_linux_test.go

    		}
    		t.Fatalf("Cmd failed with err %v, output: %s", err, out)
    	}
    
    	// Inode number of the time namespaces should be different.
    	// Based on https://man7.org/linux/man-pages/man7/time_namespaces.7.html#EXAMPLES
    	timens, err := os.Readlink("/proc/self/ns/time")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	parentTimeNS := timens
    	childTimeNS := string(out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/runtime/extern.go

    	cgocheck mode can be enabled using GOEXPERIMENT (which
    	requires a rebuild), see https://pkg.go.dev/internal/goexperiment for details.
    
    	disablethp: setting disablethp=1 on Linux disables transparent huge pages for the heap.
    	It has no effect on other platforms. disablethp is meant for compatibility with versions
    	of Go before 1.21, which stopped working around a Linux kernel default that can result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/users/users_linux.go

    		// with an error. F_SETLK is used instead of F_SETLKW to avoid
    		// the case where a runaway process grabs the exclusive lock and
    		// blocks this call indefinitely.
    		// https://man7.org/linux/man-pages/man2/fcntl.2.html
    		lock := syscall.Flock_t{Type: syscall.F_WRLCK}
    		if err = syscall.FcntlFlock(f.Fd(), syscall.F_SETLK, &lock); err == nil {
    			break
    		}
    		time.Sleep(200 * time.Millisecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  9. src/runtime/sys_darwin_amd64.s

    	RET
    
    TEXT runtime·madvise_trampoline(SB), NOSPLIT, $0
    	MOVQ	8(DI), SI	// arg 2 len
    	MOVL	16(DI), DX	// arg 3 advice
    	MOVQ	0(DI), DI	// arg 1 addr
    	CALL	libc_madvise(SB)
    	// ignore failure - maybe pages are locked
    	RET
    
    TEXT runtime·mlock_trampoline(SB), NOSPLIT, $0
    	UNDEF // unimplemented
    
    GLOBL timebase<>(SB),NOPTR,$(machTimebaseInfo__size)
    
    TEXT runtime·nanotime_trampoline(SB),NOSPLIT,$0
    	MOVQ	DI, BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. src/runtime/sys_openbsd_arm.s

    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	4(R0), R1		// arg 2 len
    	MOVW	8(R0), R2		// arg 3 advice
    	MOVW	0(R0), R0		// arg 1 addr
    	BL	libc_madvise(SB)
    	// ignore failure - maybe pages are locked
    	MOVW	R9, R13
    	RET
    
    TEXT runtime·open_trampoline(SB),NOSPLIT,$0
    	MOVW	R13, R9
    	SUB	$8, R13
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	4(R0), R1		// arg 2 - flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
Back to top