Home
last modified time | relevance | path

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

/rk3399_ARM-atf/lib/libc/
H 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()
H A Dstrtoull.c55 int neg, any, cutlim; in strtoull() local
86 cutlim = ULLONG_MAX % base; in strtoull()
98 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()
H A Dstrtol.c54 int neg, any, cutlim; in strtol() local
106 cutlim = cutoff % base; in strtol()
119 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
H A Dstrtoll.c54 int neg, any, cutlim; in strtoll() local
107 cutlim = cutoff % base; in strtoll()
120 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()