type runtime.sysMemStat

22 uses

	runtime (current package)
		malloc.go#L1311: func persistentalloc(size, align uintptr, sysStat *sysMemStat) unsafe.Pointer {
		malloc.go#L1322: func persistentalloc1(size, align uintptr, sysStat *sysMemStat) *notInHeap {
		malloc.go#L1423: func (l *linearAlloc) alloc(size, align uintptr, sysStat *sysMemStat) unsafe.Pointer {
		mem_darwin.go#L14: func sysAlloc(n uintptr, sysStat *sysMemStat) unsafe.Pointer {
		mem_darwin.go#L42: func sysFree(v unsafe.Pointer, n uintptr, sysStat *sysMemStat) {
		mem_darwin.go#L61: func sysMap(v unsafe.Pointer, n uintptr, sysStat *sysMemStat) {
		mfixalloc.go#L35: 	stat   *sysMemStat
		mfixalloc.go#L52: func (f *fixalloc) init(size uintptr, first func(arg, p unsafe.Pointer), arg unsafe.Pointer, stat *sysMemStat) {
		mpagealloc.go#L296: 	sysStat *sysMemStat
		mpagealloc.go#L302: func (p *pageAlloc) init(mheapLock *mutex, sysStat *sysMemStat) {
		mranges.go#L163: 	sysStat *sysMemStat
		mranges.go#L166: func (a *addrRanges) init(sysStat *sysMemStat) {
		mstats.go#L35: 	heap_sys      sysMemStat // virtual address space obtained from system for GC'd heap
		mstats.go#L45: 	stacks_sys   sysMemStat // only counts newosproc0 stack in mstats; differs from MemStats.StackSys
		mstats.go#L50: 	mspan_sys    sysMemStat
		mstats.go#L52: 	mcache_sys   sysMemStat
		mstats.go#L53: 	buckhash_sys sysMemStat // profiling bucket hash table
		mstats.go#L58: 	gcMiscSys                sysMemStat // updated atomically or during STW
		mstats.go#L61: 	other_sys sysMemStat // updated atomically or during STW
		mstats.go#L738: type sysMemStat uint64
		mstats.go#L744: func (s *sysMemStat) load() uint64 {
		mstats.go#L752: func (s *sysMemStat) add(n int64) {