func strconv.AppendInt

30 uses

	strconv (current package)
		itoa.go#L40: func AppendInt(dst []byte, i int64, base int) []byte {

	cloud.google.com/go/storage
		storage.go#L1534: 		buf = strconv.AppendInt(buf, n, 10)

	database/sql
		convert.go#L524: 		return strconv.AppendInt(buf, rv.Int(), 10), true

	encoding/json
		encode.go#L552: 	b := strconv.AppendInt(e.scratch[:0], v.Int(), 10)

	encoding/xml
		marshal.go#L856: 				if err := emit(p, strconv.AppendInt(scratch[:0], vf.Int(), 10)); err != nil {

	github.com/aws/aws-sdk-go/private/protocol/json/jsonutil
		build.go#L209: 		buf.Write(strconv.AppendInt(scratch[:0], value.Int(), 10))

	github.com/go-redis/redis/v8/internal
		arg.go#L19: 		return strconv.AppendInt(b, int64(v), 10)
		arg.go#L21: 		return strconv.AppendInt(b, int64(v), 10)
		arg.go#L23: 		return strconv.AppendInt(b, int64(v), 10)
		arg.go#L25: 		return strconv.AppendInt(b, int64(v), 10)
		arg.go#L27: 		return strconv.AppendInt(b, v, 10)

	github.com/go-redis/redis/v8/internal/proto
		writer.go#L139: 	w.numBuf = strconv.AppendInt(w.numBuf[:0], n, 10)

	github.com/lib/pq
		array.go#L474: 		b = strconv.AppendInt(b, a[0], 10)
		array.go#L477: 			b = strconv.AppendInt(b, a[i], 10)
		encode.go#L31: 		return strconv.AppendInt(nil, v, 10)
		encode.go#L138: 		return strconv.AppendInt(buf, v, 10)
		encode.go#L501: 		b = strconv.AppendInt(b, int64(offset), 10)

	github.com/prometheus/common/expfmt
		text_create.go#L462: 	*bp = strconv.AppendInt((*bp)[:0], i, 10)

	golang.org/x/xerrors
		adaptor.go#L112: 			format = strconv.AppendInt(format, int64(width), 10)
		adaptor.go#L116: 			format = strconv.AppendInt(format, int64(prec), 10)

	google.golang.org/api/googleapi
		types.go#L125: 		return strconv.AppendInt(dst, q[i], 10)
		types.go#L131: 		return strconv.AppendInt(dst, int64(q[i]), 10)

	math/big
		ftoa.go#L284: 	return strconv.AppendInt(buf, exp, 10)
		ftoa.go#L343: 	return strconv.AppendInt(buf, e, 10)
		ftoa.go#L410: 	return strconv.AppendInt(buf, exp64, 10)
		ftoa.go#L444: 	return strconv.AppendInt(buf, int64(x.exp), 10)

	net/http
		cookie.go#L211: 		b.Write(strconv.AppendInt(buf[:0], int64(c.MaxAge), 10))
		http.go#L101: 			b = strconv.AppendInt(b, int64(s[i]), 16)
		server.go#L1293: 		setHeader.contentLength = strconv.AppendInt(cw.res.clenBuf[:0], int64(len(p)), 10)
		server.go#L1519: 		bw.Write(strconv.AppendInt(scratch[:0], int64(code), 10))