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

Function decodeInt64

profile/proto.go:289–295  ·  view source on GitHub ↗
(b *buffer, x *int64)

Source from the content-addressed store, hash-verified

287}
288
289func decodeInt64(b *buffer, x *int64) error {
290 if err := checkType(b, 0); err != nil {
291 return err
292 }
293 *x = int64(b.u64)
294 return nil
295}
296
297func decodeInt64s(b *buffer, x *[]int64) error {
298 if b.typ == 2 {

Callers 2

decodeInt64sFunction · 0.85
encode.goFile · 0.85

Calls 1

checkTypeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…