Home | History | Annotate | Download | only in garbage

Lines Matching refs:st

15 	st := new(runtime.MemStats)
16 runtime.ReadMemStats(st)
22 fmt.Printf("garbage.%sMem%s Alloc=%d/%d Heap=%d NextGC=%d Mallocs=%d\n", name, cpus, st.Alloc, st.TotalAlloc, st.Sys, st.NextGC, st.Mallocs)
24 fmt.Printf("garbage.%sLastPause%s 1 %d ns/op\n", name, cpus, st.PauseNs[(st.NumGC-1)%uint32(len(st.PauseNs))])
25 fmt.Printf("garbage.%sPause%s %d %d ns/op\n", name, cpus, st.NumGC, int64(st.PauseTotalNs)/int64(st.NumGC))
26 nn := int(st.NumGC)
27 if nn >= len(st.PauseNs) {
28 nn = len(st.PauseNs)
30 t1, t2, t3, t4, t5 := tukey5(st.PauseNs[0:nn])
33 // fmt.Printf("garbage.%sScan: %v\n", name, st.ScanDist)