func strconv.AppendInt
27 uses
strconv (current package)
itoa.go#L40: func AppendInt(dst []byte, i int64, base int) []byte {
encoding/asn1
asn1.go#L240: s.Write(strconv.AppendInt(buf, int64(v), 10))
encoding/json
encode.go#L525: b = strconv.AppendInt(b, v.Int(), 10)
expvar
expvar.go#L67: return strconv.AppendInt(b, v.i.Load(), 10)
fmt
print.go#L90: b = strconv.AppendInt(b, int64(w), 10)
print.go#L94: b = strconv.AppendInt(b, int64(p), 10)
github.com/valyala/fastjson
arena.go#L98: a.b = strconv.AppendInt(a.b, int64(n), 10)
go.pact.im/x/zapjournal
encoder.go#L158: e.buf = strconv.AppendInt(e.buf, value, 10)
json.go#L49: e.setBuf(strconv.AppendInt(e.buf(), v, 10))
go.uber.org/zap/buffer
buffer.go#L52: b.bs = strconv.AppendInt(b.bs, i, 10)
golang.org/x/tools/go/types/objectpath
objectpath.go#L347: path = strconv.AppendInt(path, int64(arg), 10)
golang.org/x/tools/internal/event/keys
keys.go#L85: w.Write(strconv.AppendInt(buf, int64(k.From(l)), 10))
keys.go#L117: w.Write(strconv.AppendInt(buf, int64(k.From(l)), 10))
keys.go#L149: w.Write(strconv.AppendInt(buf, int64(k.From(l)), 10))
keys.go#L181: w.Write(strconv.AppendInt(buf, int64(k.From(l)), 10))
keys.go#L213: w.Write(strconv.AppendInt(buf, k.From(l), 10))
google.golang.org/protobuf/internal/encoding/json
encode.go#L181: e.out = strconv.AppendInt(e.out, n, 10)
google.golang.org/protobuf/internal/encoding/text
encode.go#L200: e.out = strconv.AppendInt(e.out, n, 10)
google.golang.org/protobuf/reflect/protoreflect
source.go#L96: b = strconv.AppendInt(b, int64(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#L267: b.Write(strconv.AppendInt(buf[:0], int64(c.MaxAge), 10))
http.go#L157: b = strconv.AppendInt(b, int64(s[i]), 16)
server.go#L1373: setHeader.contentLength = strconv.AppendInt(cw.res.clenBuf[:0], int64(len(p)), 10)
server.go#L1611: bw.Write(strconv.AppendInt(scratch[:0], int64(code), 10))