Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/stdlib/
Dstrtoul.c137 register int neg = 0, any, cutlim; in strtoul_l() local
159 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in strtoul_l()
171 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul_l()
Dstrtoull.c133 register int neg = 0, any, cutlim; in _strtoull_l() local
155 cutlim = (unsigned long long)ULLONG_MAX % (unsigned long long)base; in _strtoull_l()
167 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in _strtoull_l()
Dstrtoumax.c64 int neg = 0, any, cutlim; in strtoumax_l() local
93 cutlim = UINTMAX_MAX % base; in strtoumax_l()
105 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoumax_l()
Dstrtoimax.c64 int neg = 0, any = 0, cutlim; in strtoimax_l() local
113 cutlim = cutoff % base; in strtoimax_l()
126 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoimax_l()
Dstrtoll.c137 register int neg = 0, any, cutlim; in _strtoll_l() local
179 cutlim = cutoff % (unsigned long long)base; in _strtoll_l()
192 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in _strtoll_l()
Dwcstol.c137 register int neg = 0, any, cutlim; in wcstol_l() local
179 cutlim = cutoff % (unsigned long)base; in wcstol_l()
192 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstol_l()
Dwcstoll.c138 register int neg = 0, any, cutlim; in wcstoll_l() local
180 cutlim = cutoff % (unsigned long long)base; in wcstoll_l()
193 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstoll_l()
Dwcstoul.c138 register int neg = 0, any, cutlim; in wcstoul_l() local
160 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in wcstoul_l()
172 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstoul_l()
Dstrtol.c129 register int neg = 0, any, cutlim; in _strtol_l() local
180 cutlim = cutoff % (unsigned long)base; in _strtol_l()
193 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in _strtol_l()
Dwcstoull.c150 register int neg = 0, any, cutlim; in wcstoull_l() local
176 cutlim = (unsigned long long)ULLONG_MAX % (unsigned long long)base; in wcstoull_l()
188 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstoull_l()
Dwcstoumax.c63 int neg = 0, any, cutlim; in wcstoumax_l() local
92 cutlim = UINTMAX_MAX % base; in wcstoumax_l()
109 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstoumax_l()
Dwcstoimax.c64 int neg = 0, any, cutlim; in wcstoimax_l() local
93 cutlim = cutoff % base; in wcstoimax_l()
111 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstoimax_l()
/picolibc-latest/newlib/libc/tinystdio/
Dstrtoi.h96 unsigned int cutlim = ucutoff % base; in strtoi() local
99 unsigned int cutlim = strtoi_max % base; in strtoi() local
123 if (val > cutoff || (val == cutoff && i > cutlim)) in strtoi()