Home | History | Annotate | Download | only in stdlib

Lines Matching defs:cutoff

59 	__INT acc, cutoff;
123 * Compute the cutoff value between legal numbers and illegal
131 * cutoff will be set to 214748364 and cutlim to either
139 cutoff = (__INT)(neg ? __INT_MIN : __INT_MAX);
140 cutlim = (int)(cutoff % base);
141 cutoff /= base;
145 cutoff += 1;
163 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
178 if (acc > cutoff || (acc == cutoff && i > cutlim)) {