const strconv.IntSize

8 uses

	strconv (current package)
		atoi.go#L55: const IntSize = intSize
		atoi.go#L101: 		bitSize = IntSize
		atoi.go#L211: 		bitSize = IntSize

	encoding/base64
		base64.go#L480: 	for strconv.IntSize >= 64 && len(src)-si >= 8 && len(dst)-n >= 8 {

	flag
		flag.go#L147: 	v, err := strconv.ParseInt(s, 0, strconv.IntSize)
		flag.go#L189: 	v, err := strconv.ParseUint(s, 0, strconv.IntSize)

	golang.org/x/net/http2
		gotrack.go#L82: 		bitSize = int(strconv.IntSize)

	net/http
		h2_bundle.go#L3075: 		bitSize = int(strconv.IntSize)