func strconv.Itoa
79 uses
strconv (current package)
atoi.go#L56: return &NumError{fn, stringslite.Clone(str), errors.New("invalid base " + Itoa(base))}
atoi.go#L60: return &NumError{fn, stringslite.Clone(str), errors.New("invalid bit size " + Itoa(bitSize))}
itoa.go#L34: func Itoa(i int) string {
crypto
crypto.go#L64: return "unknown hash value " + strconv.Itoa(int(h))
crypto.go#L134: panic("crypto: requested hash function #" + strconv.Itoa(int(h)) + " is unavailable")
crypto/aes
aes.go#L29: return "crypto/aes: invalid key size " + strconv.Itoa(int(k))
crypto/des
cipher.go#L22: return "crypto/des: invalid key size " + strconv.Itoa(int(k))
crypto/ed25519
ed25519.go#L167: panic("ed25519: bad seed length: " + strconv.Itoa(len(seed)))
ed25519.go#L216: panic("ed25519: bad public key length: " + strconv.Itoa(l))
crypto/internal/fips140/aes
aes.go#L58: return "crypto/aes: invalid key size " + strconv.Itoa(int(k))
crypto/internal/fips140/ed25519
ed25519.go#L87: return nil, errors.New("ed25519: bad seed length: " + strconv.Itoa(l))
ed25519.go#L121: return nil, errors.New("ed25519: bad private key length: " + strconv.Itoa(l))
ed25519.go#L156: return nil, errors.New("ed25519: bad public key length: " + strconv.Itoa(l))
ed25519.go#L203: return nil, errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l))
ed25519.go#L206: return nil, errors.New("ed25519: bad Ed25519ph context length: " + strconv.Itoa(l))
ed25519.go#L224: return nil, errors.New("ed25519: bad Ed25519ctx context length: " + strconv.Itoa(l))
ed25519.go#L285: return errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l))
ed25519.go#L288: return errors.New("ed25519: bad Ed25519ph context length: " + strconv.Itoa(l))
ed25519.go#L298: return errors.New("ed25519: bad Ed25519ctx context length: " + strconv.Itoa(l))
ed25519.go#L305: return errors.New("ed25519: bad signature length: " + strconv.Itoa(l))
crypto/rc4
rc4.go#L28: return "crypto/rc4: invalid key size " + strconv.Itoa(int(k))
crypto/tls
alert.go#L106: return "tls: alert(" + strconv.Itoa(int(e)) + ")"
crypto/x509
parser.go#L409: return errors.New("x509: cannot parse IP address of length " + strconv.Itoa(len(data)))
x509.go#L260: return strconv.Itoa(int(algo))
x509.go#L284: return strconv.Itoa(int(algo))
flag
flag.go#L174: func (i *intValue) String() string { return strconv.Itoa(int(*i)) }
go.pact.im/x/goupdate
packages.go#L22: log("loaded packages: " + strconv.Itoa(len(pkgs)))
upgrade.go#L12: log("iteration " + strconv.Itoa(i))
upgrade.go#L44: log("found upgrades: " + strconv.Itoa(len(upgrades)))
go.pact.im/x/httpdebug
httpdebug.go#L45: h.Set("Content-Length", strconv.Itoa(len(modinfo)))
httpdebug.go#L53: h.Set("Content-Length", strconv.Itoa(len(debugPage)))
go.pact.im/x/zapjournal/tests
journalctl.go#L35: "_PID="+strconv.Itoa(pid),
go.uber.org/mock/gomock
call.go#L358: c.origin, strconv.Itoa(i), formatGottenArg(m, args[i]), m)
call.go#L402: c.origin, strconv.Itoa(i), formatGottenArg(m, args[i:]), c.args[i])
go/build
build.go#L355: c.ReleaseTags = append(c.ReleaseTags, "go1."+strconv.Itoa(i))
go/build/constraint
vers.go#L38: return "go1." + strconv.Itoa(v)
go/doc/comment
html.go#L45: h := strconv.Itoa(p.headingLevel())
go/token
position.go#L50: s += strconv.Itoa(pos.Line)
token.go#L247: s = "token(" + strconv.Itoa(int(tok)) + ")"
go/types
context.go#L74: h.string(strconv.Itoa(ctxt.getID(orig)))
typestring.go#L298: w.string(strconv.Itoa(w.ctxt.getID(t)))
golang.org/x/net/http2
gotrack.go#L111: err = errors.New("invalid base " + strconv.Itoa(base))
http2.go#L224: return strconv.Itoa(code)
server.go#L2692: clen = strconv.Itoa(len(p))
server.go#L3346: codeStr = strconv.Itoa(int(code))
golang.org/x/sys/unix
syscall_linux.go#L246: return Utimes("/proc/self/fd/"+strconv.Itoa(fd), tv)
golang.org/x/tools/internal/gcimporter
iexport.go#L1254: name = blankMarker + strconv.Itoa(tparam.Index())
google.golang.org/grpc/internal/resolver/dns
dns_resolver.go#L268: addr := ip + ":" + strconv.Itoa(int(s.Port))
google.golang.org/grpc/internal/transport
controlbuf.go#L841: {Name: ":status", Value: strconv.Itoa(int(eas.httpStatus))},
controlbuf.go#L843: {Name: "grpc-status", Value: strconv.Itoa(int(eas.status.Code()))},
http2_client.go#L568: headerFields = append(headerFields, hpack.HeaderField{Name: "grpc-previous-rpc-attempts", Value: strconv.Itoa(callHdr.PreviousAttempts)})
http2_server.go#L1099: headerFields = append(headerFields, hpack.HeaderField{Name: "grpc-status", Value: strconv.Itoa(int(st.Code()))})
google.golang.org/protobuf/internal/encoding/tag
tag.go#L158: tag = append(tag, strconv.Itoa(int(fd.Number())))
google.golang.org/protobuf/internal/impl
api_export.go#L79: return strconv.Itoa(int(n))
api_export_opaque.go#L127: return strconv.Itoa(int(n))
internal/buildcfg
cfg.go#L121: armStr := strconv.Itoa(g.Version)
net/http
h2_bundle.go#L3355: err = errors.New("invalid base " + strconv.Itoa(base))
h2_bundle.go#L3701: return strconv.Itoa(code)
h2_bundle.go#L6788: clen = strconv.Itoa(len(p))
h2_bundle.go#L7442: codeStr = strconv.Itoa(int(code))
response.go#L251: text = "status code " + strconv.Itoa(r.StatusCode)
response.go#L256: text = strings.TrimPrefix(text, strconv.Itoa(r.StatusCode)+" ")
socks_bundle.go#L78: return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
socks_bundle.go#L119: return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
socks_bundle.go#L142: return nil, errors.New("unknown address type " + strconv.Itoa(int(b[3])))
socks_bundle.go#L186: return "socks " + strconv.Itoa(int(cmd))
socks_bundle.go#L217: return "unknown code: " + strconv.Itoa(int(code))
socks_bundle.go#L253: port := strconv.Itoa(a.Port)
socks_bundle.go#L472: return errors.New("unsupported authentication method " + strconv.Itoa(int(auth)))
reflect
type.go#L464: return "kind" + strconv.Itoa(int(k))
type.go#L959: return "ChanDir" + strconv.Itoa(int(d))
type.go#L2203: panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no name")
type.go#L2206: panic("reflect.StructOf: field " + strconv.Itoa(i) + " has invalid name")
type.go#L2209: panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no type")
type.go#L2596: s := "[" + strconv.Itoa(length) + "]" + stringFor(typ)
regexp/syntax
prog.go#L299: pc := strconv.Itoa(j)
regexp.go#L263: b.WriteString("<invalid op" + strconv.Itoa(int(re.Op)) + ">")
regexp.go#L354: b.WriteString(strconv.Itoa(re.Min))
regexp.go#L358: b.WriteString(strconv.Itoa(re.Max))