runtime.MemStats.Alloc (field)

5 uses

	runtime (current package)
		heapdump.go#L570: 	dumpint(m.Alloc)
		mstats.go#L58: 	Alloc uint64
		mstats.go#L354: 	_ = m.Alloc // nil check test before we switch stacks, see issue 61158
		mstats.go#L506: 	stats.Alloc = totalAlloc - totalFree

	runtime/pprof
		pprof.go#L692: 	fmt.Fprintf(w, "# Alloc = %d\n", s.Alloc)