Home
last modified time | relevance | path

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

/Zephyr-latest/lib/libc/minimal/source/stdlib/
Dstrtoul.c49 register int neg = 0, any, cutlim; in strtoul() local
76 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in strtoul()
88 if ((any < 0) || (acc > cutoff) || ((acc == cutoff) && (c > cutlim))) { in strtoul()
Dstrtoull.c49 register int neg = 0, any, cutlim; in strtoull() local
75 cutlim = (unsigned long long)ULLONG_MAX % (unsigned long long)base; in strtoull()
87 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull()
Dstrtoll.c49 register int neg = 0, any, cutlim; in strtoll() local
94 cutlim = cutoff % (unsigned long long)base; in strtoll()
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
Dstrtol.c49 register int neg = 0, any, cutlim; in strtol() local
95 cutlim = cutoff % (unsigned long)base; in strtol()
108 if ((any < 0) || (acc > cutoff) || ((acc == cutoff) && (c > cutlim))) { in strtol()