Searched refs:cutoff (Results 1 – 2 of 2) sorted by relevance
46 long acc, cutoff; in strtol() local93 cutoff = neg ? LONG_MIN : LONG_MAX; in strtol()94 cutlim = cutoff % base; in strtol()95 cutoff /= base; in strtol()99 cutoff += 1; in strtol()115 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtol()125 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
47 long long acc, cutoff; in strtoll() local95 cutoff = neg ? LLONG_MIN : LLONG_MAX; in strtoll()96 cutlim = cutoff % base; in strtoll()97 cutoff /= base; in strtoll()101 cutoff += 1; in strtoll()117 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll()127 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
Completed in 6 milliseconds