runtime.MemStats.Mallocs (field)

9 uses

	runtime (current package)
		heapdump.go#L575: 	dumpint(m.Mallocs)
		mstats.go#L88: 	Mallocs uint64
		mstats.go#L511: 	stats.Mallocs = nMalloc

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

	testing
		allocs.go#L32: 	mallocs := 0 - memstats.Mallocs
		allocs.go#L41: 	mallocs += memstats.Mallocs
		benchmark.go#L141: 		b.startAllocs = memStats.Mallocs
		benchmark.go#L155: 		b.netAllocs += memStats.Mallocs - b.startAllocs
		benchmark.go#L176: 		b.startAllocs = memStats.Mallocs