Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for mib (0.02 sec)

  1. pkg/ledger/smt_test.go

    		var m runtime.MemStats
    		runtime.ReadMemStats(&m)
    		fmt.Println(index, " : update time : ", elapsed, "commit time : ", elapsed2,
    			"\n1000 Get time : ", elapsed3,
    			"\nRAM : ", m.Sys/1024/1024, " MiB")
    	}
    }
    
    // go test -run=xxx -bench=. -benchmem -test.benchtime=20s
    func BenchmarkCacheHeightLimit(b *testing.B) {
    	smt := newSMT(hasher, cache.NewTTL(forever, time.Minute), time.Minute)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc_64bit.go

    	// because it's quite large and a discontiguous heap could cause a
    	// lot of memory to be used. In this situation, the worst case overhead
    	// is in the single-digit MiB if we map the whole thing.
    	//
    	// The base address of the backing store is always page-aligned,
    	// because it comes from the OS, so it's sufficient to align the
    	// index.
    	haveMin := s.min.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/runtime/sys_freebsd_386.s

    	MOVL	$0, 0(SP)	// syscall gap
    	MOVL	$1, 4(SP)
    	MOVL	AX, 8(SP)
    	MOVL	$SYS_sysarch, AX
    	INT	$0x80
    	JAE	2(PC)
    	INT	$3
    	RET
    
    TEXT runtime·sysctl(SB),NOSPLIT,$28
    	LEAL	mib+0(FP), SI
    	LEAL	4(SP), DI
    	CLD
    	MOVSL				// arg 1 - name
    	MOVSL				// arg 2 - namelen
    	MOVSL				// arg 3 - oldp
    	MOVSL				// arg 4 - oldlenp
    	MOVSL				// arg 5 - newp
    	MOVSL				// arg 6 - newlen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. src/runtime/sys_dragonfly_amd64.s

    	MOVQ	SP, SI			// arg 2 - tls_info
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/runtime/sys_netbsd_386.s

    	INT	$0x80
    	MOVL	AX, ret+8(FP)
    	RET
    
    TEXT runtime·lwp_self(SB),NOSPLIT,$-4
    	MOVL	$SYS__lwp_self, AX
    	INT	$0x80
    	MOVL	AX, ret+0(FP)
    	RET
    
    TEXT runtime·sysctl(SB),NOSPLIT,$28
    	LEAL	mib+0(FP), SI
    	LEAL	4(SP), DI
    	CLD
    	MOVSL				// arg 1 - name
    	MOVSL				// arg 2 - namelen
    	MOVSL				// arg 3 - oldp
    	MOVSL				// arg 4 - oldlenp
    	MOVSL				// arg 5 - newp
    	MOVSL				// arg 6 - newlen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. src/runtime/sys_netbsd_arm64.s

    	MOVD	old+8(FP), R1		// arg 2 - oss
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top