Searched refs:cutlim (Results 1 – 13 of 13) sorted by relevance
/picolibc-latest/newlib/libc/stdlib/ |
D | strtoul.c | 137 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()
|
D | strtoull.c | 133 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()
|
D | strtoumax.c | 64 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()
|
D | strtoimax.c | 64 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()
|
D | strtoll.c | 137 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()
|
D | wcstol.c | 137 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()
|
D | wcstoll.c | 138 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()
|
D | wcstoul.c | 138 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()
|
D | strtol.c | 129 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()
|
D | wcstoull.c | 150 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()
|
D | wcstoumax.c | 63 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()
|
D | wcstoimax.c | 64 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/ |
D | strtoi.h | 96 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()
|