Home | History | Annotate | Download | only in stdlib

Lines Matching refs:acc

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