func internal/strconv.Atoi

7 uses

	internal/strconv (current package)
		atoi.go#L214: func Atoi(s string) (int, error) {

	runtime
		os_linux.go#L342: 	v, err := strconv.Atoi(slicebytetostringtmp((*byte)(ptr), int(n)))
		os_linux.go#L976: 				ver, err := strconv.Atoi(rel[:i])
		os_linux.go#L981: 		ver, err := strconv.Atoi(rel)
		runtime1.go#L536: 			if n, err := strconv.Atoi(value); err == nil {
		runtime1.go#L582: 		if n, err := strconv.Atoi(level); err == nil && n == int(uint32(n)) {

	strconv
		number.go#L147: 	x, err := strconv.Atoi(s)