Home | History | Annotate | Download | only in common

Lines Matching refs:acc

60 	unsigned long acc;
112 for (acc = 0, any = 0;; c = *s++) {
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
127 acc *= base;
128 acc += c;
132 acc = neg ? LONG_MIN : LONG_MAX;
135 acc = -acc;
138 return (acc);