func internal/runtime/strconv.Atoi64
9 uses
internal/runtime/strconv (current package)
atoi.go#L14: func Atoi64(s string) (int64, bool) {
atoi.go#L62: if n, ok := Atoi64(s); n == int64(int(n)) {
atoi.go#L71: if n, ok := Atoi64(s); n == int64(int32(n)) {
internal/runtime/cgroup
cgroup_linux.go#L223: val, ok := strconv.Atoi64(string(buf))
cgroup_linux.go#L283: quota, ok := strconv.Atoi64(string(quotaStr))
cgroup_linux.go#L288: period, ok := strconv.Atoi64(string(periodStr))
runtime
string.go#L417: n, ok := strconv.Atoi64(s)
string.go#L432: n, ok := strconv.Atoi64(s[:len(s)-1])
string.go#L463: n, ok := strconv.Atoi64(s[:len(s)-3])
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)