github.com/google/pprof/profile.Sample.Value (field)

41 uses

	github.com/google/pprof/profile (current package)
		encode.go#L402: 	encodeInt64s(b, 2, p.Value)
		encode.go#L413: 	func(b *buffer, m message) error { return decodeInt64s(b, &m.(*Sample).Value) },
		legacy_java_profile.go#L201: 				Value:    make([]int64, 2),
		legacy_java_profile.go#L205: 			if s.Value[0], err = strconv.ParseInt(value1, 0, 64); err != nil {
		legacy_java_profile.go#L208: 			if s.Value[1], err = strconv.ParseInt(value2, 0, 64); err != nil {
		legacy_java_profile.go#L215: 				if s.Value[0] == 0 {
		legacy_java_profile.go#L218: 				s.NumLabel = map[string][]int64{"bytes": {s.Value[1] / s.Value[0]}}
		legacy_java_profile.go#L219: 				s.Value[0], s.Value[1] = scaleHeapSample(s.Value[0], s.Value[1], javaHeapzSamplingRate)
		legacy_java_profile.go#L222: 					s.Value[0] = s.Value[0] * p.Period
		legacy_java_profile.go#L223: 					s.Value[1] = s.Value[1] * p.Period
		legacy_profile.go#L135: 			Value:    []int64{n},
		legacy_profile.go#L454: 				Value:    []int64{int64(count), int64(count) * p.Period},
		legacy_profile.go#L542: 			Value:    value,
		legacy_profile.go#L779: 				Value:    value,
		legacy_profile.go#L881: 				s.Value[0]++
		legacy_profile.go#L906: 			Value:    []int64{1},
		merge.go#L99: 		for i, v := range s.Value {
		merge.go#L106: 		for i, v := range s.Value {
		merge.go#L124: 	for _, v := range s.Value {
		merge.go#L155: 		Value:    make([]int64, len(src.Value)),
		merge.go#L182: 		for i, v := range src.Value {
		merge.go#L183: 			ss.Value[i] += v
		merge.go#L187: 	copy(s.Value, src.Value)
		profile.go#L74: 	Value    []int64
		profile.go#L345: 		if len(s.Value) != sampleLen {
		profile.go#L346: 			return fmt.Errorf("mismatch: sample has %d values vs. %d types", len(s.Value), len(p.SampleType))
		profile.go#L628: 	for _, v := range s.Value {
		profile.go#L743: 		for i, v := range s.Value {
		profile.go#L745: 				s.Value[i] = int64(float64(v) * ratios[i])

	cloud.google.com/go/profiler
		heap.go#L38: 		s.Value[0] = 0
		heap.go#L39: 		s.Value[1] = 0
		heap.go#L91: 		s.Value = s.Value[:2]