Home
last modified time | relevance | path

Searched refs:cutlim (Results 1 – 5 of 5) sorted by relevance

/toolchain/binutils/binutils-2.25/libiberty/
Dstrtoul.c67 register int neg = 0, any, cutlim; in strtoul() local
89 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in strtoul()
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
Dstrtol.c96 register int neg = 0, any, cutlim; in strtol() local
138 cutlim = cutoff % (unsigned long)base; in strtol()
149 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
Dstrtoull.c72 register int neg = 0, any, cutlim; in strtoull() local
94 cutlim = (ullong_type)ULLONG_MAX % (ullong_type)base; in strtoull()
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()
Dstrtoll.c104 register int neg = 0, any, cutlim; in strtoll() local
146 cutlim = cutoff % (ullong_type)base; in strtoll()
157 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()
/toolchain/binutils/binutils-2.25/bfd/
Dbfd.c1284 unsigned int cutlim; in bfd_scan_vma() local
1319 cutlim = (~ (bfd_vma) 0) % (bfd_vma) base; in bfd_scan_vma()
1335 if (value > cutoff || (value == cutoff && digit > cutlim)) in bfd_scan_vma()