func strconv.FormatInt

48 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#L972: 		return strconv.FormatInt(k.Int(), 10), nil

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

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

	go/constant
		kind_string.go#L25: 		return "Kind(" + strconv.FormatInt(int64(i), 10) + ")"
		value.go#L187: func (x int64Val) String() string { return strconv.FormatInt(int64(x), 10) }

	go/types
		typestring.go#L140: 		w.string(strconv.FormatInt(t.len, 10))

	golang.org/x/net/internal/httpcommon
		request.go#L217: 			f("content-length", strconv.FormatInt(req.ActualContentLength, 10))

	golang.org/x/tools/internal/pkgbits
		syncmarker_string.go#L89: 		return "SyncMarker(" + strconv.FormatInt(int64(i+1), 10) + ")"

	golang.org/x/tools/internal/typesinternal
		errorcode_string.go#L177: 		return "ErrorCode(" + strconv.FormatInt(int64(i), 10) + ")"

	google.golang.org/grpc/codes
		code_string.go#L68: 		return "Code(" + strconv.FormatInt(int64(c), 10) + ")"
		code_string.go#L109: 		return "CODE(" + strconv.FormatInt(int64(c), 10) + ")"

	google.golang.org/grpc/internal/grpcutil
		encode_duration.go#L47: 		return strconv.FormatInt(d, 10) + "n"
		encode_duration.go#L50: 		return strconv.FormatInt(d, 10) + "u"
		encode_duration.go#L53: 		return strconv.FormatInt(d, 10) + "m"
		encode_duration.go#L56: 		return strconv.FormatInt(d, 10) + "S"
		encode_duration.go#L59: 		return strconv.FormatInt(d, 10) + "M"
		encode_duration.go#L62: 	return strconv.FormatInt(div(t, time.Hour), 10) + "H"

	google.golang.org/protobuf/encoding/prototext
		encode.go#L311: 		e.WriteName(strconv.FormatInt(int64(num), dec))

	google.golang.org/protobuf/internal/encoding/defval
		default.go#L139: 			return strconv.FormatInt(int64(v.Enum()), 10), nil
		default.go#L144: 		return strconv.FormatInt(v.Int(), 10), nil

	html/template
		attr_string.go#L25: 		return "attr(" + strconv.FormatInt(int64(i), 10) + ")"
		delim_string.go#L23: 		return "delim(" + strconv.FormatInt(int64(i), 10) + ")"
		element_string.go#L24: 		return "element(" + strconv.FormatInt(int64(i), 10) + ")"
		jsctx_string.go#L22: 		return "jsCtx(" + strconv.FormatInt(int64(i), 10) + ")"
		state_string.go#L48: 		return "state(" + strconv.FormatInt(int64(i), 10) + ")"
		urlpart_string.go#L23: 		return "urlPart(" + strconv.FormatInt(int64(i), 10) + ")"

	internal/profile
		merge.go#L257: 		lines[i*2+1] = strconv.FormatInt(line.Line, 16)

	internal/types/errors
		code_string.go#L198: 		return "Code(" + strconv.FormatInt(int64(i), 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#L9650: 			f("content-length", strconv.FormatInt(contentLength, 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)})

	os/exec
		exec.go#L1179: 	buf.WriteString(strconv.FormatInt(w.skipped, 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))