Home
last modified time | relevance | path

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

/bionic/libc/stdlib/
Dstrtoimax.c48 int neg, any, cutlim; in strtoimax() local
99 cutlim = INTMAX_MIN % x; \ in strtoimax()
102 cutlim = INTMAX_MAX % x; \ in strtoimax()
110 cutlim = (int)(INTMAX_MIN % 4); in strtoimax()
113 cutlim = (int)(INTMAX_MAX % 4); in strtoimax()
123 cutlim = cutoff % base; in strtoimax()
129 if (cutlim > 0) { in strtoimax()
130 cutlim -= base; in strtoimax()
133 cutlim = -cutlim; in strtoimax()
147 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoimax()
[all …]
Dstrtol.c49 int neg, any, cutlim; in strtol() local
95 cutlim = cutoff % base; in strtol()
98 if (cutlim > 0) { in strtol()
99 cutlim -= base; in strtol()
102 cutlim = -cutlim; in strtol()
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtol()
126 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
Dstrtoumax.c48 int neg, any, cutlim; in strtoumax() local
77 cutlim = UINTMAX_MAX % x; \ in strtoumax()
86 cutlim = UINTMAX_MAX % base; in strtoumax()
100 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoumax()
Dstrtoul.c48 int neg, any, cutlim; in strtoul() local
75 cutlim = ULONG_MAX % (unsigned long)base; in strtoul()
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoul()