func strconv.ParseInt
110 uses
strconv (current package)
atoi.go#L184: func ParseInt(s string, base int, bitSize int) (i int64, err error) {
atoi.go#L259: i64, err := ParseInt(s, 10, 0)
database/sql
convert.go#L434: i64, err := strconv.ParseInt(s, 10, dv.Type().Bits())
encoding/asn1
common.go#L119: i, err := strconv.ParseInt(part[8:], 10, 64)
encoding/json
decode.go#L200: return strconv.ParseInt(string(n), 10, 64)
decode.go#L797: n, err := strconv.ParseInt(s, 10, 64)
decode.go#L1008: n, err := strconv.ParseInt(s, 10, 64)
encoding/xml
read.go#L623: itmp, err := strconv.ParseInt(strings.TrimSpace(string(src)), 10, dst.Type().Bits())
flag
flag.go#L147: v, err := strconv.ParseInt(s, 0, strconv.IntSize)
flag.go#L168: v, err := strconv.ParseInt(s, 0, 64)
fmt
scan.go#L657: i, err := strconv.ParseInt(tok, base, 64)
github.com/aws/aws-sdk-go-v2/service/s3
deserializers.go#L5311: vv, err := strconv.ParseInt(headerValues[0], 0, 64)
deserializers.go#L5377: vv, err := strconv.ParseInt(headerValues[0], 0, 32)
deserializers.go#L5405: vv, err := strconv.ParseInt(headerValues[0], 0, 32)
deserializers.go#L5454: vv, err := strconv.ParseInt(headerValues[0], 0, 32)
deserializers.go#L5843: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L6906: vv, err := strconv.ParseInt(headerValues[0], 0, 64)
deserializers.go#L6967: vv, err := strconv.ParseInt(headerValues[0], 0, 32)
deserializers.go#L6995: vv, err := strconv.ParseInt(headerValues[0], 0, 32)
deserializers.go#L8127: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L8405: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L8664: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L8681: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L8950: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L9263: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L12303: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L12320: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L12337: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L12390: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L12407: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L12424: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L12550: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L14103: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L14224: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L14254: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L15428: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L15477: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L16878: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L17058: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L17075: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L17159: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L17179: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L17912: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L17929: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L17982: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L17999: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L18374: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L18844: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L18861: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L18985: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L19435: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L19452: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L20252: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L20573: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L21559: i64, err := strconv.ParseInt(xtv, 10, 64)
deserializers.go#L21839: i64, err := strconv.ParseInt(xtv, 10, 64)
github.com/aws/smithy-go/document
document.go#L110: return strconv.ParseInt(string(n), 10, bitSize)
github.com/aws/smithy-go/encoding/httpbinding
encode.go#L60: iv, err := strconv.ParseInt(v, 10, 64)
github.com/go-pg/migrations/v8
collection.go#L216: version, err := strconv.ParseInt(fileName[:idx], 10, 64)
collection.go#L444: target, err = strconv.ParseInt(a[1], 10, 64)
collection.go#L516: newVersion, err = strconv.ParseInt(a[1], 10, 64)
collection.go#L729: n, err := strconv.ParseInt(base[:idx], 10, 64)
github.com/go-pg/pg/v10/internal
strconv.go#L10: return strconv.ParseInt(BytesToString(b), base, bitSize)
github.com/golang/protobuf/proto
text_decode.go#L386: if x, err := strconv.ParseInt(tok.value, 0, 32); err == nil {
text_decode.go#L399: if x, err := strconv.ParseInt(tok.value, 0, 64); err == nil {
text_decode.go#L448: if x, err := strconv.ParseInt(tok.value, 0, 32); err == nil {
github.com/valyala/fastjson/fastfloat
parse.go#L117: dd, err := strconv.ParseInt(s, 10, 64)
parse.go#L167: dd, err := strconv.ParseInt(s, 10, 64)
go.pact.im/x/old/pgtxtar
pgtxtar.go#L40: version, err := strconv.ParseInt(parts[0], 10, 64)
go/constant
value.go#L422: if x, err := strconv.ParseInt(lit, 0, 64); err == nil {
google.golang.org/grpc
service_config.go#L148: i, err := strconv.ParseInt(ss[0], 10, 32)
service_config.go#L159: f, err := strconv.ParseInt(ss[1], 10, 64)
google.golang.org/grpc/internal/transport
http2_client.go#L1430: code, err := strconv.ParseInt(hf.Value, 10, 32)
http2_client.go#L1453: c, err := strconv.ParseInt(hf.Value, 10, 32)
http_util.go#L213: t, err := strconv.ParseInt(s[:size-1], 10, 64)
google.golang.org/protobuf/encoding/protojson
decode.go#L641: if n, err := strconv.ParseInt(name, base10, b32); err == nil {
decode.go#L646: if n, err := strconv.ParseInt(name, base10, b64); err == nil {
well_known_types.go#L735: secs, err = strconv.ParseInt(string(intp), 10, 64)
well_known_types.go#L746: nanos, err = strconv.ParseInt(string(nanob), 10, 32)
google.golang.org/protobuf/internal/encoding/defval
default.go#L59: if n, err := strconv.ParseInt(s, 10, 32); err == nil {
default.go#L72: if v, err := strconv.ParseInt(s, 10, 32); err == nil {
default.go#L76: if v, err := strconv.ParseInt(s, 10, 64); err == nil {
google.golang.org/protobuf/internal/encoding/json
decode_number.go#L192: i, err := strconv.ParseInt(string(n.exp), 10, 32)
decode_token.go#L150: n, err := strconv.ParseInt(s, 10, bitSize)
google.golang.org/protobuf/internal/encoding/text
decode.go#L416: if _, err := strconv.ParseInt(string(d.in[:num.size]), 10, 32); err == nil {
decode_token.go#L190: num, _ := strconv.ParseInt(string(t.raw), 10, 32)
decode_token.go#L277: if n, err := strconv.ParseInt(t.str, 0, 64); err == nil {
decode_token.go#L295: if n, err := strconv.ParseInt(t.str, 0, 32); err == nil {
gotest.tools/v3/internal/source
version.go#L23: rMajor, err := strconv.ParseInt(parts[0], 10, 32)
version.go#L30: rMinor, err := strconv.ParseInt(parts[1], 10, 32)
internal/profile
legacy_profile.go#L102: n, err := strconv.ParseInt(m[1], 0, 64)
legacy_profile.go#L491: if period, err = strconv.ParseInt(header[6], 10, 64); err != nil {
legacy_profile.go#L609: if v1, err = strconv.ParseInt(sampleData[valueIndex], 10, 64); err != nil {
legacy_profile.go#L612: if v2, err = strconv.ParseInt(sampleData[valueIndex+1], 10, 64); err != nil {
legacy_profile.go#L761: if cpuHz, err = strconv.ParseInt(val, 0, 64); err != nil {
legacy_profile.go#L765: if p.Period, err = strconv.ParseInt(val, 0, 64); err != nil {
legacy_profile.go#L769: ms, err := strconv.ParseInt(val, 0, 64)
legacy_profile.go#L842: v1, err := strconv.ParseInt(sampleData[1], 10, 64)
legacy_profile.go#L846: v2, err := strconv.ParseInt(sampleData[2], 10, 64)
math/big
ratconv.go#L290: exp, err = strconv.ParseInt(string(digits), 10, 64)
net/http
fs.go#L901: i, err := strconv.ParseInt(end, 10, 64)
fs.go#L911: i, err := strconv.ParseInt(start, 10, 64)
fs.go#L926: i, err := strconv.ParseInt(end, 10, 64)
server.go#L1154: v, err := strconv.ParseInt(cl, 10, 64)
net/http/pprof
pprof.go#L122: sec, err := strconv.ParseInt(r.FormValue("seconds"), 10, 64)
pprof.go#L257: sec, err := strconv.ParseInt(secStr, 10, 64)
testing
benchmark.go#L53: n, err := strconv.ParseInt(s[:len(s)-1], 10, 0)
match.go#L251: n, err := strconv.ParseInt(suffix, 10, 32)
testing.go#L1695: n, err = strconv.ParseInt(*shuffle, 10, 64)
text/template/parse
node.go#L673: i, err := strconv.ParseInt(text, 0, 64)