runtime.heapStatsDelta.smallFreeCount (field)

8 uses

	runtime (current package)
		metrics.go#L108: 				for i, count := range in.heapStats.smallFreeCount[1:] {
		metrics.go#L334: 		n := uint64(a.smallAllocCount[i] - a.smallFreeCount[i])
		mgcsweep.go#L507: 			atomic.Xadduintptr(&stats.smallFreeCount[spc.sizeclass()], uintptr(nfreed))
		mstats.go#L652: 		f := uint64(consStats.smallFreeCount[i])
		mstats.go#L781: 	smallFreeCount  [_NumSizeClasses]uintptr // number of frees for small objects (<=maxSmallSize)
		mstats.go#L804: 	for i := range b.smallFreeCount {
		mstats.go#L805: 		a.smallFreeCount[i] += b.smallFreeCount[i]