func strconv.ParseUint

17 uses

	strconv (current package)
		atoi.go#L60: func ParseUint(s string, base int, bitSize int) (uint64, error) {
		atoi.go#L198: 	un, err = ParseUint(s, base, bitSize)

	encoding/json
		decode.go#L796: 					n, err := strconv.ParseUint(s, 10, 64)
		decode.go#L1005: 			n, err := strconv.ParseUint(s, 10, 64)

	flag
		flag.go#L189: 	v, err := strconv.ParseUint(s, 0, strconv.IntSize)
		flag.go#L210: 	v, err := strconv.ParseUint(s, 0, 64)

	fmt
		scan.go#L687: 	i, err := strconv.ParseUint(tok, base, 64)

	net/http
		h2_bundle.go#L5595: 			if cl, err := strconv.ParseUint(vv[0], 10, 63); err == nil {
		h2_bundle.go#L5982: 			if cl, err := strconv.ParseUint(clen, 10, 63); err == nil {
		h2_bundle.go#L8537: 			if cl, err := strconv.ParseUint(clens[0], 10, 63); err == nil {
		transfer.go#L1051: 	n, err := strconv.ParseUint(cl, 10, 63)

	runtime/pprof
		proto.go#L640: 		lo, err := strconv.ParseUint(string(addr[:i]), 16, 64)
		proto.go#L644: 		hi, err := strconv.ParseUint(string(addr[i+1:]), 16, 64)
		proto.go#L653: 		offset, err := strconv.ParseUint(string(next()), 16, 64)

	src.elv.sh/pkg/ui
		color.go#L109: 		r, rErr := strconv.ParseUint(name[1:3], 16, 8)
		color.go#L110: 		g, gErr := strconv.ParseUint(name[3:5], 16, 8)
		color.go#L111: 		b, bErr := strconv.ParseUint(name[5:7], 16, 8)