func strconv.FormatInt

30 uses

	strconv (current package)
		itoa.go#L25: func FormatInt(i int64, base int) string {
		itoa.go#L35: 	return FormatInt(int64(i), 10)

	compress/flate
		inflate.go#L36: 	return "flate: corrupt input before offset " + strconv.FormatInt(int64(e), 10)
		inflate.go#L53: 	return "flate: read error at offset " + strconv.FormatInt(e.Offset, 10) + ": " + e.Err.Error()
		inflate.go#L65: 	return "flate: write error at offset " + strconv.FormatInt(e.Offset, 10) + ": " + e.Err.Error()

	crypto/tls
		common_string.go#L63: 		return "SignatureScheme(" + strconv.FormatInt(int64(i), 10) + ")"
		common_string.go#L93: 		return "CurveID(" + strconv.FormatInt(int64(i), 10) + ")"
		common_string.go#L113: 		return "ClientAuthType(" + strconv.FormatInt(int64(i), 10) + ")"

	encoding/base64
		base64.go#L293: 	return "illegal base64 data at input byte " + strconv.FormatInt(int64(e), 10)

	encoding/json
		encode.go#L954: 		w.ks = strconv.FormatInt(w.k.Int(), 10)

	flag
		flag.go#L195: func (i *int64Value) String() string { return strconv.FormatInt(int64(*i), 10) }

	github.com/gotd/td/tdp
		tdp.go#L67: 			b.WriteString(strconv.FormatInt(i, 10))
		tdp.go#L85: 		b.WriteString(strconv.FormatInt(int64(info.ID), 16))

	github.com/gotd/td/telegram/internal/manager
		connmode_string.go#L22: 		return "ConnMode(" + strconv.FormatInt(int64(i), 10) + ")"

	go.opentelemetry.io/otel/attribute
		type_string.go#L28: 		return "Type(" + strconv.FormatInt(int64(i), 10) + ")"
		value.go#L247: 		return strconv.FormatInt(v.AsInt64(), 10)

	go.uber.org/atomic
		int32.go#L108: 	return strconv.FormatInt(int64(v), 10)
		int64.go#L108: 	return strconv.FormatInt(int64(v), 10)

	math/big
		accuracy_string.go#L23: 		return "Accuracy(" + strconv.FormatInt(int64(i+-1), 10) + ")"
		roundingmode_string.go#L25: 		return "RoundingMode(" + strconv.FormatInt(int64(i), 10) + ")"

	net/http
		fs.go#L347: 		w.Header().Set("Content-Length", strconv.FormatInt(sendSize, 10))
		h2_bundle.go#L9073: 			f("content-length", strconv.FormatInt(contentLength, 10))
		transfer.go#L293: 		if _, err := io.WriteString(w, strconv.FormatInt(t.ContentLength, 10)+"\r\n"); err != nil {
		transfer.go#L297: 			trace.WroteHeaderField("Content-Length", []string{strconv.FormatInt(t.ContentLength, 10)})

	nhooyr.io/websocket
		stringer.go#L37: 		return "opcode(" + strconv.FormatInt(int64(i), 10) + ")"
		stringer.go#L55: 		return "MessageType(" + strconv.FormatInt(int64(i+1), 10) + ")"
		stringer.go#L88: 		return "StatusCode(" + strconv.FormatInt(int64(i+1000), 10) + ")"

	regexp/syntax
		op_string.go#L50: 		return "Op(" + strconv.FormatInt(int64(i), 10) + ")"
		regexp.go#L279: 			s := strconv.FormatInt(int64(r), 16)
		regexp.go#L287: 		b.WriteString(strconv.FormatInt(int64(r), 16))