Home
last modified time | relevance | path

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

/trusted-firmware-a/lib/libc/
A Dstrtol.c53 unsigned long cutoff; in strtol() local
103 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX in strtol()
105 cutlim = cutoff % base; in strtol()
106 cutoff /= base; in strtol()
118 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
A Dstrtoll.c53 unsigned long long cutoff; in strtoll() local
104 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX in strtoll()
106 cutlim = cutoff % base; in strtoll()
107 cutoff /= base; in strtoll()
119 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()
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()
A Dstrtoull.c53 unsigned long long cutoff; in strtoull() local
84 cutoff = ULLONG_MAX / base; in strtoull()
97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()

Completed in 3 milliseconds