Home | History | Annotate | Download | only in stdlib

Lines Matching defs:acc

59 	__UINT acc, cutoff;
127 for (acc = 0, any = 0;; c = *s++) {
140 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
141 acc = __UINT_MAX;
151 acc *= (__UINT)base;
152 acc += i;
156 acc = -acc;
160 return(acc);