Lines Matching refs:acc
53 long long acc, cutoff; in strtoll() local
111 for (acc = 0, any = 0;; c = (unsigned char) *s++) { in strtoll()
123 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
125 acc = LLONG_MIN; in strtoll()
129 acc *= base; in strtoll()
130 acc -= c; in strtoll()
133 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
135 acc = LLONG_MAX; in strtoll()
139 acc *= base; in strtoll()
140 acc += c; in strtoll()
146 return (acc); in strtoll()