Searched refs:cutlim (Results 1 – 4 of 4) sorted by relevance
49 register int neg = 0, any, cutlim; in strtoul() local76 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in strtoul()88 if ((any < 0) || (acc > cutoff) || ((acc == cutoff) && (c > cutlim))) { in strtoul()
49 register int neg = 0, any, cutlim; in strtoull() local75 cutlim = (unsigned long long)ULLONG_MAX % (unsigned long long)base; in strtoull()87 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull()
49 register int neg = 0, any, cutlim; in strtoll() local94 cutlim = cutoff % (unsigned long long)base; in strtoll()107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
49 register int neg = 0, any, cutlim; in strtol() local95 cutlim = cutoff % (unsigned long)base; in strtol()108 if ((any < 0) || (acc > cutoff) || ((acc == cutoff) && (c > cutlim))) { in strtol()