Searched refs:cutlim (Results 1 – 4 of 4) sorted by relevance
54 int neg, any, cutlim; in strtoul() local85 cutlim = ULONG_MAX % base; in strtoul()97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
54 int neg, any, cutlim; in strtoull() local85 cutlim = ULLONG_MAX % base; in strtoull()97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()
54 int neg, any, cutlim; in strtol() local105 cutlim = cutoff % base; in strtol()118 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
54 int neg, any, cutlim; in strtoll() local106 cutlim = cutoff % base; in strtoll()119 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()
Completed in 3 milliseconds