MCPcopy Create free account
hub / github.com/google/pprof / encodeUint64Opt

Function encodeUint64Opt

profile/proto.go:103–108  ·  view source on GitHub ↗
(b *buffer, tag int, x uint64)

Source from the content-addressed store, hash-verified

101}
102
103func encodeUint64Opt(b *buffer, tag int, x uint64) {
104 if x == 0 {
105 return
106 }
107 encodeUint64(b, tag, x)
108}
109
110func encodeInt64(b *buffer, tag int, x int64) {
111 u := uint64(x)

Callers 4

encodeMethod · 0.85
encodeMethod · 0.85
encodeMethod · 0.85
encodeMethod · 0.85

Calls 1

encodeUint64Function · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…