Searched refs:cutoff (Results 1 – 4 of 4) sorted by relevance
46 intmax_t acc, cutoff; in strtoimax() local100 cutoff = INTMAX_MIN / x; \ in strtoimax()103 cutoff = INTMAX_MAX / x; \ in strtoimax()111 cutoff = INTMAX_MIN / 4; in strtoimax()114 cutoff = INTMAX_MAX / 4; in strtoimax()122 cutoff = neg ? INTMAX_MIN : INTMAX_MAX; in strtoimax()123 cutlim = cutoff % base; in strtoimax()124 cutoff /= base; in strtoimax()131 cutoff += 1; in strtoimax()147 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoimax()[all …]
47 long acc, cutoff; in strtol() local94 cutoff = neg ? LONG_MIN : LONG_MAX; in strtol()95 cutlim = cutoff % base; in strtol()96 cutoff /= base; in strtol()100 cutoff += 1; in strtol()116 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtol()126 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
46 uintmax_t acc, cutoff; in strtoumax() local76 case x: cutoff = UINTMAX_MAX / x; \ in strtoumax()85 cutoff = UINTMAX_MAX / base; in strtoumax()100 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoumax()
46 unsigned long acc, cutoff; in strtoul() local74 cutoff = ULONG_MAX / (unsigned long)base; in strtoul()87 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoul()