Searched refs:cutoff (Results 1 – 9 of 9) sorted by relevance
45 intmax_t acc, cutoff; in strtoimax() local104 cutoff = neg ? INTMAX_MIN : INTMAX_MAX; in strtoimax()105 cutlim = cutoff % base; in strtoimax()106 cutoff /= base; in strtoimax()110 cutoff += 1; in strtoimax()126 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoimax()136 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoimax()
46 long acc, cutoff; in strtol() local104 cutoff = neg ? LONG_MIN : LONG_MAX; in strtol()105 cutlim = cutoff % base; in strtol()106 cutoff /= base; in strtol()110 cutoff += 1; in strtol()126 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtol()136 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
48 long long acc, cutoff; in strtoll() local107 cutoff = neg ? LLONG_MIN : LLONG_MAX; in strtoll()108 cutlim = cutoff % base; in strtoll()109 cutoff /= base; in strtoll()113 cutoff += 1; in strtoll()129 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll()139 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
48 unsigned long long acc, cutoff; in strtoull() local83 cutoff = ULLONG_MAX / (unsigned long long)base; in strtoull()96 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull()
46 unsigned long acc, cutoff; in strtoul() local81 cutoff = ULONG_MAX / (unsigned long)base; in strtoul()94 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoul()
45 uintmax_t acc, cutoff; in strtoumax() local80 cutoff = UINTMAX_MAX / (uintmax_t)base; in strtoumax()93 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoumax()
52 int_type acc, cutoff; in FUNCNAME() local92 cutoff = neg ? MIN_VALUE : MAX_VALUE; in FUNCNAME()93 cutlim = (int)(cutoff % base); in FUNCNAME()94 cutoff /= base; in FUNCNAME()98 cutoff += 1; in FUNCNAME()111 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in FUNCNAME()121 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in FUNCNAME()
51 uint_type acc, cutoff; in FUNCNAME() local90 cutoff = MAX_VALUE / (uint_type)base; in FUNCNAME()100 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in FUNCNAME()
86 unsigned char cutoff; member