Home | History | Annotate | Download | only in StdLib

Lines Matching defs:acc

63   intmax_t acc, cutoff;

72 (void) &acc; (void) &cutoff;
129 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
141 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
143 acc = INTMAX_MIN;
147 acc *= base;
148 acc -= c;
151 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
153 acc = INTMAX_MAX;
157 acc *= base;
158 acc += c;
165 return (acc);