func strconv.AppendInt

38 uses

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

	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#L860: 				if err := emit(p, strconv.AppendInt(scratch[:0], vf.Int(), 10)); err != nil {

	github.com/aws/smithy-go/encoding/xml
		value.go#L132: 	*xv.scratch = strconv.AppendInt((*xv.scratch)[:0], v, 10)

	github.com/go-pg/pg/v10
		pg.go#L227: 		dst = strconv.AppendInt(dst, v, 10)

	github.com/go-pg/pg/v10/orm
		composite_create.go#L79: 			b = strconv.AppendInt(b, int64(q.opt.Varchar), 10)
		query.go#L1666: 		b = strconv.AppendInt(b, int64(i), 10)
		select.go#L176: 			b = strconv.AppendInt(b, int64(q.q.limit), 10)
		select.go#L181: 			b = strconv.AppendInt(b, int64(q.q.offset), 10)
		table.go#L1439: 	return strconv.AppendInt(b, int64(v.Uint()), 10)
		table.go#L1443: 	return strconv.AppendInt(b, int64(v.Elem().Uint()), 10)
		table_create.go#L140: 		b = strconv.AppendInt(b, int64(q.opt.Varchar), 10)

	github.com/go-pg/pg/v10/types
		append.go#L20: 		return strconv.AppendInt(b, int64(v), 10)
		append.go#L22: 		return strconv.AppendInt(b, v, 10)
		append.go#L24: 		return strconv.AppendInt(b, int64(v), 10)
		append_value.go#L151: 	return strconv.AppendInt(b, v.Int(), 10)
		array_append.go#L156: 		b = strconv.AppendInt(b, int64(n), 10)
		array_append.go#L189: 		b = strconv.AppendInt(b, n, 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/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/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#L218: 		b.Write(strconv.AppendInt(buf[:0], int64(c.MaxAge), 10))
		http.go#L92: 			b = strconv.AppendInt(b, int64(s[i]), 16)
		server.go#L1292: 		setHeader.contentLength = strconv.AppendInt(cw.res.clenBuf[:0], int64(len(p)), 10)
		server.go#L1519: 		bw.Write(strconv.AppendInt(scratch[:0], int64(code), 10))

	net/netip
		netip.go#L1174: 	b = strconv.AppendInt(b, int64(p.port), 10)