runtime.mstats.gcPauseDist (field)

8 uses

	runtime (current package)
		metrics.go#L133: 				hist.counts[0] = atomic.Load64(&memstats.gcPauseDist.underflow)
		metrics.go#L134: 				for i := range memstats.gcPauseDist.counts {
		metrics.go#L135: 					hist.counts[i+1] = atomic.Load64(&memstats.gcPauseDist.counts[i])
		mgc.go#L1446: 		memstats.gcPauseDist.record(now - work.pauseStart)
		mgc.go#L1594: 			memstats.gcPauseDist.record(now - work.pauseStart)
		mgc.go#L1707: 	memstats.gcPauseDist.record(now - work.pauseStart)
		mstats.go#L167: 	gcPauseDist timeHistogram
		mstats.go#L454: 	if offset := unsafe.Offsetof(memstats.gcPauseDist); offset%8 != 0 {