Home | History | Annotate | Download | only in stdlib

Lines Matching refs:cutoff

47 	long acc, cutoff;
78 * Compute the cutoff value between legal numbers and illegal
86 * cutoff will be set to 214748364 and cutlim to either
94 cutoff = neg ? LONG_MIN : LONG_MAX;
95 cutlim = cutoff % base;
96 cutoff /= base;
100 cutoff += 1;
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
126 if (acc > cutoff || (acc == cutoff && c > cutlim)) {