func strconv.Itoa

71 uses

	strconv (current package)
		number.go#L214: func Itoa(i int) string {
		number.go#L281: 	return &NumError{fn, stringslite.Clone(str), errors.New("invalid base " + Itoa(base))}
		number.go#L285: 	return &NumError{fn, stringslite.Clone(str), errors.New("invalid bit size " + Itoa(bitSize))}

	crypto
		crypto.go#L64: 		return "unknown hash value " + strconv.Itoa(int(h))
		crypto.go#L134: 	panic("crypto: requested hash function #" + strconv.Itoa(int(h)) + " is unavailable")

	crypto/aes
		aes.go#L29: 	return "crypto/aes: invalid key size " + strconv.Itoa(int(k))

	crypto/des
		cipher.go#L22: 	return "crypto/des: invalid key size " + strconv.Itoa(int(k))

	crypto/ed25519
		ed25519.go#L188: 		panic("ed25519: bad seed length: " + strconv.Itoa(len(seed)))
		ed25519.go#L238: 		panic("ed25519: bad public key length: " + strconv.Itoa(l))

	crypto/internal/fips140/aes
		aes.go#L58: 	return "crypto/aes: invalid key size " + strconv.Itoa(int(k))

	crypto/internal/fips140/ed25519
		ed25519.go#L84: 		return nil, errors.New("ed25519: bad seed length: " + strconv.Itoa(l))
		ed25519.go#L114: 		return nil, errors.New("ed25519: bad private key length: " + strconv.Itoa(l))
		ed25519.go#L143: 		return nil, errors.New("ed25519: bad public key length: " + strconv.Itoa(l))
		ed25519.go#L190: 		return nil, errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l))
		ed25519.go#L193: 		return nil, errors.New("ed25519: bad Ed25519ph context length: " + strconv.Itoa(l))
		ed25519.go#L211: 		return nil, errors.New("ed25519: bad Ed25519ctx context length: " + strconv.Itoa(l))
		ed25519.go#L272: 		return errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l))
		ed25519.go#L275: 		return errors.New("ed25519: bad Ed25519ph context length: " + strconv.Itoa(l))
		ed25519.go#L285: 		return errors.New("ed25519: bad Ed25519ctx context length: " + strconv.Itoa(l))
		ed25519.go#L292: 		return errors.New("ed25519: bad signature length: " + strconv.Itoa(l))

	crypto/rc4
		rc4.go#L28: 	return "crypto/rc4: invalid key size " + strconv.Itoa(int(k))

	crypto/tls
		alert.go#L106: 	return "tls: alert(" + strconv.Itoa(int(e)) + ")"

	crypto/x509
		parser.go#L433: 				return errors.New("x509: cannot parse IP address of length " + strconv.Itoa(len(data)))
		x509.go#L260: 	return strconv.Itoa(int(algo))
		x509.go#L284: 	return strconv.Itoa(int(algo))

	github.com/gotd/td/session
		telethon.go#L83: 		Addr:      net.JoinHostPort(addr.String(), strconv.Itoa(int(port))),

	github.com/gotd/td/telegram/auth
		flow.go#L292: 	return strings.Repeat(strconv.Itoa(t.dc), length), nil

	github.com/gotd/td/telegram/dcs
		plain.go#L75: 	addr := net.JoinHostPort(dc.IPAddress, strconv.Itoa(dc.Port))

	github.com/gotd/td/telegram/downloader
		master.go#L20: 	return "redirect to CDN DC " + strconv.Itoa(r.Redirect.DCID)

	github.com/refraction-networking/utls
		alert.go#L106: 	return "tls: alert(" + strconv.Itoa(int(e)) + ")"
		u_conn.go#L259: 		return errors.New("Incorrect client random length! Expected: 32, got: " + strconv.Itoa(len(r)))
		u_conn.go#L669: 		return errors.New("utls: unexpected ClientHello length. Expected: " + strconv.Itoa(4+helloLen) +
		u_conn.go#L670: 			". Got: " + strconv.Itoa(helloBuffer.Len()))
		u_parrots.go#L2799: 			strconv.Itoa(len(hello.Random)) + " bytes")

	golang.org/x/net/internal/socks
		client.go#L72: 		return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
		client.go#L113: 		return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
		client.go#L136: 		return nil, errors.New("unknown address type " + strconv.Itoa(int(b[3])))
		socks.go#L30: 		return "socks " + strconv.Itoa(int(cmd))
		socks.go#L61: 		return "unknown code: " + strconv.Itoa(int(code))
		socks.go#L97: 	port := strconv.Itoa(a.Port)
		socks.go#L316: 	return errors.New("unsupported authentication method " + strconv.Itoa(int(auth)))

	image
		geom.go#L20: 	return "(" + strconv.Itoa(p.X) + "," + strconv.Itoa(p.Y) + ")"

	net/http
		h2_bundle.go#L3422: 		err = errors.New("invalid base " + strconv.Itoa(base))
		h2_bundle.go#L3672: 	return strconv.Itoa(code)
		h2_bundle.go#L6671: 			clen = strconv.Itoa(len(p))
		h2_bundle.go#L7325: 		codeStr = strconv.Itoa(int(code))
		response.go#L251: 			text = "status code " + strconv.Itoa(r.StatusCode)
		response.go#L256: 		text = strings.TrimPrefix(text, strconv.Itoa(r.StatusCode)+" ")
		socks_bundle.go#L78: 		return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
		socks_bundle.go#L119: 		return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
		socks_bundle.go#L142: 		return nil, errors.New("unknown address type " + strconv.Itoa(int(b[3])))
		socks_bundle.go#L186: 		return "socks " + strconv.Itoa(int(cmd))
		socks_bundle.go#L217: 		return "unknown code: " + strconv.Itoa(int(code))
		socks_bundle.go#L253: 	port := strconv.Itoa(a.Port)
		socks_bundle.go#L472: 	return errors.New("unsupported authentication method " + strconv.Itoa(int(auth)))

	net/netip
		netip.go#L686: 			return Prefix{}, errors.New("prefix length " + strconv.Itoa(b) + " too large for IPv4")
		netip.go#L691: 			return Prefix{}, errors.New("prefix length " + strconv.Itoa(b) + " too large for IPv6")
		netip.go#L1595: 	return p.ip.String() + "/" + strconv.Itoa(p.Bits())

	reflect
		type.go#L496: 	return "kind" + strconv.Itoa(int(k))
		type.go#L1040: 	return "ChanDir" + strconv.Itoa(int(d))
		type.go#L2292: 			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no name")
		type.go#L2295: 			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has invalid name")
		type.go#L2298: 			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no type")
		type.go#L2684: 	s := "[" + strconv.Itoa(length) + "]" + stringFor(typ)

	rsc.io/qr/coding
		qr.go#L30: 	return strconv.Itoa(int(v))
		qr.go#L288: 	return strconv.Itoa(int(r))
		qr.go#L306: 	return strconv.Itoa(int(l))

	rsc.io/qr/gf256
		gf256.go#L23: 		panic("gf256: invalid polynomial: " + strconv.Itoa(poly))
		gf256.go#L30: 			panic("gf256: invalid generator " + strconv.Itoa(α) +
		gf256.go#L31: 				" for polynomial " + strconv.Itoa(poly))