Home | History | Annotate | Download | only in runtime

Lines Matching full:uint64

15 	alloc       uint64 // bytes allocated and not yet freed
16 total_alloc uint64 // bytes allocated (even if freed)
17 sys uint64 // bytes obtained from system (should be sum of xxx_sys below, no locking, approximate)
18 nlookup uint64 // number of pointer lookups
19 nmalloc uint64 // number of mallocs
20 nfree uint64 // number of frees
24 heap_alloc uint64 // bytes allocated and not yet freed (same as alloc above)
25 heap_sys uint64 // bytes obtained from system
26 heap_idle uint64 // bytes in idle spans
27 heap_inuse uint64 // bytes in non-idle spans
28 heap_released uint64 // bytes released to the os
29 heap_objects uint64 // total number of allocated objects
33 stacks_inuse uint64 // this number is included in heap_inuse above
34 stacks_sys uint64 // always 0 in mstats
35 mspan_inuse uint64 // mspan structures
36 mspan_sys uint64
37 mcache_inuse uint64 // mcache structures
38 mcache_sys uint64
39 buckhash_sys uint64 // profiling bucket hash table
40 gc_sys uint64
41 other_sys uint64
45 next_gc uint64 // next gc (in heap_alloc time)
46 last_gc uint64 // last gc (in absolute time)
47 pause_total_ns uint64
48 pause_ns [256]uint64 // circular buffer of recent gc pause lengths
49 pause_end [256]uint64 // circular buffer of recent gc end times (nanoseconds since 1970)
59 nmalloc uint64
60 nfree uint64
65 tinyallocs uint64 // number of tiny allocations that didn't cause actual allocation; not exported to go directly
71 heap_live uint64
76 heap_scan uint64
82 heap_marked uint64
86 heap_reachable uint64
94 Alloc uint64 // bytes allocated and not yet freed
95 TotalAlloc uint64 // bytes allocated (even if freed)
96 Sys uint64 // bytes obtained from system (sum of XxxSys below)
97 Lookups uint64 // number of pointer lookups
98 Mallocs uint64 // number of mallocs
99 Frees uint64 // number of frees
102 HeapAlloc uint64 // bytes allocated and not yet freed (same as Alloc above)
103 HeapSys uint64 // bytes obtained from system
104 HeapIdle uint64 // bytes in idle spans
105 HeapInuse uint64 // bytes in non-idle span
106 HeapReleased uint64 // bytes released to the OS
107 HeapObjects uint64 // total number of allocated objects
112 StackInuse uint64 // bytes used by stack allocator
113 StackSys uint64
114 MSpanInuse uint64 // mspan structures
115 MSpanSys uint64
116 MCacheInuse uint64 // mcache structures
117 MCacheSys uint64
118 BuckHashSys uint64 // profiling bucket hash table
119 GCSys uint64 // GC metadata
120 OtherSys uint64 // other system allocations
123 NextGC uint64 // next collection will happen when HeapAlloc ? this amount
124 LastGC uint64 // end time of last collection (nanoseconds since 1970)
125 PauseTotalNs uint64
126 PauseNs [256]uint64 // circular buffer of recent GC pause durations, most recent at [(NumGC+255)%256]
127 PauseEnd [256]uint64 // circular buffer of recent GC pause end times
137 Mallocs uint64
138 Frees uint64
181 func readGCStats(pauses *[]uint64) {
187 func readGCStats_m(pauses *[]uint64) {
214 p[n+n+1] = uint64(memstats.numgc)
227 src := (*[unsafe.Sizeof(gcstats{}) / 8]uint64)(unsafe.Pointer(&mp.gcstats))
228 dst := (*[unsafe.Sizeof(gcstats{}) / 8]uint64)(unsafe.Pointer(stats))
236 memstats.mcache_inuse = uint64(mheap_.cachealloc.inuse)
237 memstats.mspan_inuse = uint64(mheap_.spanalloc.inuse)
272 memstats.alloc += uint64(s.elemsize)
274 memstats.nmalloc += uint64(s.ref)
275 memstats.by_size[s.sizeclass].nmalloc += uint64(s.ref)
276 memstats.alloc += uint64(s.ref) * uint64(s.elemsize)
282 smallfree := uint64(0)
288 smallfree += uint64(mheap_.nsmallfree[i]) * uint64(class_to_size[i])
294 memstats.total_alloc = uint64(memstats.alloc) + uint64(mheap_.largefree) + smallfree
334 memstats.heap_live += uint64(c.local_cachealloc)
339 memstats.heap_scan += uint64(c.local_scan)
341 memstats.tinyallocs += uint64(c.local_tinyallocs)
343 memstats.nlookup += uint64(c.local_nlookup)
345 h.largefree += uint64(c.local_largefree)
347 h.nlargefree += uint64(c.local_nlargefree)
350 h.nsmallfree[i] += uint64(c.local_nsmallfree[i])
368 func mSysStatInc(sysStat *uint64, n uintptr) {
382 func mSysStatDec(sysStat *uint64, n uintptr) {