type internal/profilerecord.MemProfileRecord

9 uses

	internal/profilerecord (current package)
		profilerecord.go#L15: type MemProfileRecord struct {
		profilerecord.go#L21: func (r *MemProfileRecord) InUseBytes() int64   { return r.AllocBytes - r.FreeBytes }
		profilerecord.go#L22: func (r *MemProfileRecord) InUseObjects() int64 { return r.AllocObjects - r.FreeObjects }

	runtime
		mprof.go#L995: 	return memProfileInternal(len(p), inuseZero, func(r profilerecord.MemProfileRecord) {
		mprof.go#L1011: func memProfileInternal(size int, inuseZero bool, copyFn func(profilerecord.MemProfileRecord)) (n int, ok bool) {
		mprof.go#L1056: 				r := profilerecord.MemProfileRecord{
		mprof.go#L1071: func copyMemProfileRecord(dst *MemProfileRecord, src profilerecord.MemProfileRecord) {
		mprof.go#L1090: func pprof_memProfileInternal(p []profilerecord.MemProfileRecord, inuseZero bool) (n int, ok bool) {
		mprof.go#L1091: 	return memProfileInternal(len(p), inuseZero, func(r profilerecord.MemProfileRecord) {