Lines Matching refs:acc
47 long acc, cutoff; in strtol() local
104 for (acc = 0, any = 0;; c = (unsigned char) *s++) { in strtol()
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtol()
118 acc = LONG_MIN; in strtol()
122 acc *= base; in strtol()
123 acc -= c; in strtol()
126 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
128 acc = LONG_MAX; in strtol()
132 acc *= base; in strtol()
133 acc += c; in strtol()
139 return (acc); in strtol()