func strconv.Itoa

64 uses

	strconv (current package)
		atoi.go#L61: 	return &NumError{fn, cloneString(str), errors.New("invalid base " + Itoa(base))}
		atoi.go#L65: 	return &NumError{fn, cloneString(str), errors.New("invalid bit size " + Itoa(bitSize))}
		itoa.go#L34: func Itoa(i int) string {

	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
		cipher.go#L26: 	return "crypto/aes: invalid key size " + strconv.Itoa(int(k))

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

	crypto/ed25519
		ed25519.go#L97: 			return nil, errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l))
		ed25519.go#L100: 			return nil, errors.New("ed25519: bad Ed25519ph context length: " + strconv.Itoa(l))
		ed25519.go#L107: 			return nil, errors.New("ed25519: bad Ed25519ctx context length: " + strconv.Itoa(l))
		ed25519.go#L168: 		panic("ed25519: bad seed length: " + strconv.Itoa(l))
		ed25519.go#L209: 		panic("ed25519: bad private key length: " + strconv.Itoa(l))
		ed25519.go#L277: 			return errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l))
		ed25519.go#L280: 			return errors.New("ed25519: bad Ed25519ph context length: " + strconv.Itoa(l))
		ed25519.go#L288: 			return errors.New("ed25519: bad Ed25519ctx context length: " + strconv.Itoa(l))
		ed25519.go#L306: 		panic("ed25519: bad public key length: " + strconv.Itoa(l))

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

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

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

	flag
		flag.go#L174: func (i *intValue) String() string { return strconv.Itoa(int(*i)) }

	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#L267: 	return strings.Repeat(strconv.Itoa(t.dc), length), nil

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

	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#L3187: 		err = errors.New("invalid base " + strconv.Itoa(base))
		h2_bundle.go#L3515: 	return strconv.Itoa(code)
		h2_bundle.go#L6453: 			clen = strconv.Itoa(len(p))
		h2_bundle.go#L7118: 		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)))

	nhooyr.io/websocket
		conn.go#L217: 	err := c.ping(ctx, strconv.Itoa(int(p)))

	reflect
		type.go#L445: 	return "kind" + strconv.Itoa(int(k))
		type.go#L828: 	return "ChanDir" + strconv.Itoa(int(d))
		type.go#L2173: 			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no name")
		type.go#L2176: 			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has invalid name")
		type.go#L2179: 			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no type")
		type.go#L2638: 	s := "[" + strconv.Itoa(length) + "]" + stringFor(typ)

	regexp/syntax
		prog.go#L299: 		pc := strconv.Itoa(j)
		regexp.go#L119: 		b.WriteString("<invalid op" + strconv.Itoa(int(re.Op)) + ">")
		regexp.go#L214: 			b.WriteString(strconv.Itoa(re.Min))
		regexp.go#L218: 					b.WriteString(strconv.Itoa(re.Max))

	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))