Home
last modified time | relevance | path

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

/rk3399_ARM-atf/lib/libc/
H A Dstrtol.c53 unsigned long cutoff; in strtol() local
104 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX in strtol()
106 cutlim = cutoff % base; in strtol()
107 cutoff /= base; in strtol()
119 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
H A Dstrtoll.c53 unsigned long long cutoff; in strtoll() local
105 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX in strtoll()
107 cutlim = cutoff % base; in strtoll()
108 cutoff /= base; in strtoll()
120 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()
H A Dstrtoul.c53 unsigned long cutoff; in strtoul() local
84 cutoff = ULONG_MAX / base; in strtoul()
97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
H A Dstrtoull.c54 unsigned long long cutoff; in strtoull() local
85 cutoff = ULLONG_MAX / base; in strtoull()
98 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()