func strconv.FormatInt

21 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#L97: 		return "CurveID(" + strconv.FormatInt(int64(i), 10) + ")"
		common_string.go#L117: 		return "ClientAuthType(" + 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#L960: 		return strconv.FormatInt(k.Int(), 10), nil

	github.com/golang-jwt/jwt/v5
		types.go#L68: 	seconds := strconv.FormatInt(truncatedDate.Unix(), 10)

	github.com/oapi-codegen/runtime
		styleparam.go#L414: 		output = strconv.FormatInt(v.Int(), 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#L419: 		w.Header().Set("Content-Length", strconv.FormatInt(sendSize, 10))
		h2_bundle.go#L9230: 			f("content-length", strconv.FormatInt(contentLength, 10))
		transfer.go#L294: 		if _, err := io.WriteString(w, strconv.FormatInt(t.ContentLength, 10)+"\r\n"); err != nil {
		transfer.go#L298: 			trace.WroteHeaderField("Content-Length", []string{strconv.FormatInt(t.ContentLength, 10)})

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