Lines Matching full:cutoff
51 register LONGLONG_T acc, cutoff; variable
88 ** Compute the cutoff value between legal numbers and illegal
96 ** is 10, cutoff will be set to 922337203685477580 and cutlim to
106 cutoff = neg ? LLONG_MIN : LLONG_MAX;
107 cutlim = cutoff % base;
108 cutoff /= base;
114 cutoff += 1;
132 if (acc < cutoff || (acc == cutoff && c > cutlim))
147 if (acc > cutoff || (acc == cutoff && c > cutlim))
191 register ULONGLONG_T acc, cutoff; local
222 cutoff = ULLONG_MAX / (ULONGLONG_T)base;
236 if (acc > cutoff || (acc == cutoff && c > cutlim))