func github.com/golang/protobuf/proto.Uint64

11 uses

	github.com/golang/protobuf/proto (current package)
		wrappers.go#L25: func Uint64(v uint64) *uint64 { return &v }

	github.com/prometheus/client_golang/prometheus
		histogram.go#L322: 		SampleCount: proto.Uint64(count),
		histogram.go#L329: 			CumulativeCount: proto.Uint64(cumCount),
		histogram.go#L502: 	his.SampleCount = proto.Uint64(h.count)
		histogram.go#L507: 			CumulativeCount: proto.Uint64(count),
		summary.go#L301: 	sum.SampleCount = proto.Uint64(s.cnt)
		summary.go#L474: 		SampleCount: proto.Uint64(count),
		summary.go#L665: 	sum.SampleCount = proto.Uint64(s.count)

	github.com/prometheus/common/expfmt
		text_parse.go#L415: 			p.currentMetric.Summary.SampleCount = proto.Uint64(uint64(value))
		text_parse.go#L434: 			p.currentMetric.Histogram.SampleCount = proto.Uint64(uint64(value))
		text_parse.go#L442: 					CumulativeCount: proto.Uint64(uint64(value)),