Home | History | Annotate | Download | only in stdlib

Lines Matching refs:acc

46 	uintmax_t acc, cutoff;
89 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
100 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
102 acc = UINTMAX_MAX;
106 acc *= (uintmax_t)base;
107 acc += c;
111 acc = -acc;
114 return (acc);