Searched refs:cutlim (Results 1 – 5 of 5) sorted by relevance
67 register int neg = 0, any, cutlim; in strtoul() local89 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in strtoul()99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
96 register int neg = 0, any, cutlim; in strtol() local138 cutlim = cutoff % (unsigned long)base; in strtol()149 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
72 register int neg = 0, any, cutlim; in strtoull() local94 cutlim = (ullong_type)ULLONG_MAX % (ullong_type)base; in strtoull()104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()
104 register int neg = 0, any, cutlim; in strtoll() local146 cutlim = cutoff % (ullong_type)base; in strtoll()157 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()
1284 unsigned int cutlim; in bfd_scan_vma() local1319 cutlim = (~ (bfd_vma) 0) % (bfd_vma) base; in bfd_scan_vma()1335 if (value > cutoff || (value == cutoff && digit > cutlim)) in bfd_scan_vma()