Lines Matching refs:acc
46 intmax_t acc, cutoff; in strtoimax() local
135 for (acc = 0, any = 0;; c = (unsigned char) *s++) { in strtoimax()
147 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoimax()
149 acc = INTMAX_MIN; in strtoimax()
153 acc *= base; in strtoimax()
154 acc -= c; in strtoimax()
157 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoimax()
159 acc = INTMAX_MAX; in strtoimax()
163 acc *= base; in strtoimax()
164 acc += c; in strtoimax()
170 return (acc); in strtoimax()