Home | History | Annotate | Download | only in stdlib

Lines Matching refs:acc

47 	long acc, cutoff;
104 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
118 acc = LONG_MIN;
122 acc *= base;
123 acc -= c;
126 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
128 acc = LONG_MAX;
132 acc *= base;
133 acc += c;
139 return (acc);