Home | History | Annotate | Download | only in StdLib

Lines Matching defs:acc

72   uintmax_t acc, cutoff;

105 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
120 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
127 acc = UINTMAX_MAX;
132 acc *= (uintmax_t)base;
133 acc += c;
137 acc = (uintmax_t)(-((intmax_t)acc));
140 return (acc);