golang.org/x/tools/internal/pkgbits.Decoder.Uint64 (method)

4 uses

	golang.org/x/tools/internal/pkgbits (current package)
		decoder.go#L377: func (r *Decoder) Uint64() uint64 {
		decoder.go#L383: func (r *Decoder) Len() int { x := r.Uint64(); v := int(x); assert(uint64(v) == x); return v }
		decoder.go#L389: func (r *Decoder) Uint() uint { x := r.Uint64(); v := uint(x); assert(uint64(v) == x); return v }

	golang.org/x/tools/internal/gcimporter
		ureader_yes.go#L364: 		len := int64(r.Uint64())