func encoding/binary.Uvarint

4 uses

	encoding/binary (current package)
		varint.go#L68: func Uvarint(buf []byte) (uint64, int) {
		varint.go#L116: 	ux, n := Uvarint(buf) // ok to continue in presence of error

	github.com/klauspost/compress/internal/snapref
		decode.go#L33: 	v, n := binary.Uvarint(src)

	github.com/klauspost/compress/zstd
		snappy.go#L424: 	v, n := binary.Uvarint(src)