func strconv.ParseInt

15 uses

	strconv (current package)
		atoi.go#L197: func ParseInt(s string, base int, bitSize int) (i int64, err error) {
		atoi.go#L272: 	i64, err := ParseInt(s, 10, 0)

	encoding/asn1
		common.go#L119: 			i, err := strconv.ParseInt(part[8:], 10, 64)

	encoding/json
		decode.go#L201: 	return strconv.ParseInt(string(n), 10, 64)
		decode.go#L778: 					n, err := strconv.ParseInt(s, 10, 64)
		decode.go#L991: 			n, err := strconv.ParseInt(string(item), 10, 64)

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

	github.com/oapi-codegen/runtime
		bindstring.go#L64: 		val, err = strconv.ParseInt(src, 10, 64)
		deepobject.go#L323: 		val, err := strconv.ParseInt(pathValues.value, 10, 64)

	math/big
		ratconv.go#L290: 		exp, err = strconv.ParseInt(string(digits), 10, 64)

	mime/multipart
		multipart.go#L357: 		if v, err := strconv.ParseInt(s, 10, 64); err == nil && v >= 0 {

	net/http
		fs.go#L1037: 			i, err := strconv.ParseInt(end, 10, 64)
		fs.go#L1047: 			i, err := strconv.ParseInt(start, 10, 64)
		fs.go#L1062: 				i, err := strconv.ParseInt(end, 10, 64)
		server.go#L1235: 		v, err := strconv.ParseInt(cl, 10, 64)