func strconv.FormatInt

33 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#L277: 	return "illegal base64 data at input byte " + strconv.FormatInt(int64(e), 10)

	encoding/json
		encode.go#L1019: 		w.s = strconv.FormatInt(w.v.Int(), 10)

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

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

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

	os/exec
		exec.go#L724: 	buf.WriteString(strconv.FormatInt(w.skipped, 10))

	regexp/syntax
		op_string.go#L24: 		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))

	src.elv.sh/pkg/eval
		builtin_fn_str.go#L137: 		out <- strconv.FormatInt(int64(num), b)

	src.elv.sh/pkg/eval/mods/str
		str.go#L140: 		return "-0x" + strconv.FormatInt(-int64(i), 16)
		str.go#L142: 	return "0x" + strconv.FormatInt(int64(i), 16)
		str.go#L401: 		out <- "0x" + strconv.FormatInt(int64(r), 16)
		str.go#L446: 		out <- "0x" + strconv.FormatInt(int64(r), 16)

	src.elv.sh/pkg/getopt
		string.go#L33: 		return "Config(" + strconv.FormatInt(int64(i), 10) + ")"
		string.go#L51: 		return "HasArg(" + strconv.FormatInt(int64(i), 10) + ")"
		string.go#L74: 		return "ContextType(" + strconv.FormatInt(int64(i), 10) + ")"

	src.elv.sh/pkg/parse
		string.go#L32: 		return "PrimaryType(" + strconv.FormatInt(int64(i), 10) + ")"
		string.go#L53: 		return "RedirMode(" + strconv.FormatInt(int64(i), 10) + ")"
		string.go#L74: 		return "ExprCtx(" + strconv.FormatInt(int64(i), 10) + ")"

	src.elv.sh/pkg/persistent/hashmap
		hashmap.go#L164: 		return strconv.FormatInt(kref.Int(), 10), nil