Home | History | Annotate | Download | only in openbsd-compat

Lines Matching defs:acc

53 	unsigned long long acc, cutoff;
83 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
96 acc = ULLONG_MAX;
100 acc *= (unsigned long long)base;
101 acc += c;
105 acc = -acc;
108 return (acc);