Searched refs:cutlim (Results 1 – 4 of 4) sorted by relevance
48 int neg, any, cutlim; in strtoimax() local99 cutlim = INTMAX_MIN % x; \ in strtoimax()102 cutlim = INTMAX_MAX % x; \ in strtoimax()110 cutlim = (int)(INTMAX_MIN % 4); in strtoimax()113 cutlim = (int)(INTMAX_MAX % 4); in strtoimax()123 cutlim = cutoff % base; in strtoimax()129 if (cutlim > 0) { in strtoimax()130 cutlim -= base; in strtoimax()133 cutlim = -cutlim; in strtoimax()147 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoimax()[all …]
49 int neg, any, cutlim; in strtol() local95 cutlim = cutoff % base; in strtol()98 if (cutlim > 0) { in strtol()99 cutlim -= base; in strtol()102 cutlim = -cutlim; in strtol()116 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtol()126 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
48 int neg, any, cutlim; in strtoumax() local77 cutlim = UINTMAX_MAX % x; \ in strtoumax()86 cutlim = UINTMAX_MAX % base; in strtoumax()100 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoumax()
48 int neg, any, cutlim; in strtoul() local75 cutlim = ULONG_MAX % (unsigned long)base; in strtoul()87 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoul()