Searched refs:cutoff (Results 1 – 4 of 4) sorted by relevance
53 unsigned long cutoff; in strtol() local104 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX in strtol()106 cutlim = cutoff % base; in strtol()107 cutoff /= base; in strtol()119 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
53 unsigned long long cutoff; in strtoll() local105 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX in strtoll()107 cutlim = cutoff % base; in strtoll()108 cutoff /= base; in strtoll()120 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()
53 unsigned long cutoff; in strtoul() local84 cutoff = ULONG_MAX / base; in strtoul()97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
54 unsigned long long cutoff; in strtoull() local85 cutoff = ULLONG_MAX / base; in strtoull()98 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()