internal/profilerecord.MemProfileRecord.InUseBytes (method)

5 uses

	internal/profilerecord (current package)
		profilerecord.go#L21: func (r *MemProfileRecord) InUseBytes() int64   { return r.AllocBytes - r.FreeBytes }

	runtime/pprof
		pprof.go#L638: 		return cmp.Compare(a.InUseBytes(), b.InUseBytes())
		pprof.go#L679: 			r.InUseObjects(), r.InUseBytes(),
		protomem.go#L55: 		values[2], values[3] = scaleHeapSample(r.InUseObjects(), r.InUseBytes(), rate)