func strconv.FormatInt

39 uses

	strconv (current package)
		number.go#L209: func FormatInt(i int64, base int) string {

	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#L101: 		return "CurveID(" + strconv.FormatInt(int64(i), 10) + ")"
		common_string.go#L121: 		return "ClientAuthType(" + strconv.FormatInt(int64(i), 10) + ")"

	crypto/x509
		x509_string.go#L57: 		return "KeyUsage(" + strconv.FormatInt(int64(i), 10) + ")"
		x509_string.go#L87: 		return "ExtKeyUsage(" + strconv.FormatInt(int64(i), 10) + ")"

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

	encoding/json
		encode.go#L992: 		return strconv.FormatInt(k.Int(), 10), nil

	github.com/coder/websocket
		conn.go#L216: 	err := c.ping(ctx, strconv.FormatInt(p, 10))
		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) + ")"

	github.com/gotd/log
		attr.go#L114: 		return strconv.FormatInt(int64(v.num), 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#L23: 		return "ConnMode(" + strconv.FormatInt(int64(i), 10) + ")"

	github.com/klauspost/compress/zstd
		blocktype_string.go#L23: 		return "blockType(" + strconv.FormatInt(int64(i), 10) + ")"
		blocktype_string.go#L43: 		return "literalsBlockType(" + strconv.FormatInt(int64(i), 10) + ")"
		blocktype_string.go#L63: 		return "seqCompMode(" + strconv.FormatInt(int64(i), 10) + ")"
		blocktype_string.go#L82: 		return "tableIndex(" + strconv.FormatInt(int64(i), 10) + ")"

	github.com/refraction-networking/utls
		common_string.go#L63: 		return "SignatureScheme(" + strconv.FormatInt(int64(i), 10) + ")"
		common_string.go#L97: 		return "CurveID(" + strconv.FormatInt(int64(i), 10) + ")"
		common_string.go#L117: 		return "ClientAuthType(" + strconv.FormatInt(int64(i), 10) + ")"

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

	go.opentelemetry.io/otel/trace/internal/telemetry
		value.go#L313: 		return strconv.FormatInt(int64(v.num), 10) // nolint: gosec
		value.go#L347: 		}{strconv.FormatInt(int64(v.num), 10)}) // nolint: gosec  // From raw bytes.

	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#L424: 		w.Header().Set("Content-Length", strconv.FormatInt(sendSize, 10))
		transfer.go#L295: 		if _, err := io.WriteString(w, strconv.FormatInt(t.ContentLength, 10)+"\r\n"); err != nil {
		transfer.go#L299: 			trace.WroteHeaderField("Content-Length", []string{strconv.FormatInt(t.ContentLength, 10)})

	net/http/internal/httpcommon
		httpcommon.go#L368: 			f("content-length", strconv.FormatInt(req.ActualContentLength, 10))