Home
last modified time | relevance | path

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

/trusted-firmware-a/lib/libc/
A Dstrtoul.c54 int neg, any, cutlim; in strtoul() local
85 cutlim = ULONG_MAX % base; in strtoul()
97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
A Dstrtoull.c54 int neg, any, cutlim; in strtoull() local
85 cutlim = ULLONG_MAX % base; in strtoull()
97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()
A Dstrtol.c54 int neg, any, cutlim; in strtol() local
105 cutlim = cutoff % base; in strtol()
118 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
A Dstrtoll.c54 int neg, any, cutlim; in strtoll() local
106 cutlim = cutoff % base; in strtoll()
119 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()

Completed in 3 milliseconds