Home | History | Annotate | Download | only in stdlib

Lines Matching defs:cutoff

46 	intmax_t acc, cutoff;
77 * Compute the cutoff value between legal numbers and illegal
85 * is 10, cutoff will be set to 922337203685477580 and cutlim to
100 cutoff = INTMAX_MIN / x; \
103 cutoff = INTMAX_MAX / x; \
111 cutoff = INTMAX_MIN / 4;
114 cutoff = INTMAX_MAX / 4;
122 cutoff = neg ? INTMAX_MIN : INTMAX_MAX;
123 cutlim = cutoff % base;
124 cutoff /= base;
131 cutoff += 1;
147 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
157 if (acc > cutoff || (acc == cutoff && c > cutlim)) {