runtime.MemStats.Mallocs (field)

9 uses

	runtime (current package)
		heapdump.go#L573: 	dumpint(m.Mallocs)
		mstats.go#L140: 	Mallocs uint64
		mstats.go#L418: 	stats.Mallocs = memstats.nmalloc

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

	testing
		allocs.go#L29: 	mallocs := 0 - memstats.Mallocs
		allocs.go#L38: 	mallocs += memstats.Mallocs
		benchmark.go#L125: 		b.startAllocs = memStats.Mallocs
		benchmark.go#L139: 		b.netAllocs += memStats.Mallocs - b.startAllocs
		benchmark.go#L160: 		b.startAllocs = memStats.Mallocs