Home
last modified time | relevance | path

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

/external/openssh/openbsd-compat/
Dstrtoll.c55 int neg, any, cutlim; in strtoll() local
102 cutlim = cutoff % base; in strtoll()
105 if (cutlim > 0) { in strtoll()
106 cutlim -= base; in strtoll()
109 cutlim = -cutlim; in strtoll()
123 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
133 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
Dstrtoull.c55 int neg, any, cutlim; in strtoull() local
82 cutlim = ULLONG_MAX % (unsigned long long)base; in strtoull()
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull()
Dstrtoul.c53 int neg, any, cutlim; in strtoul() local
80 cutlim = ULONG_MAX % (unsigned long)base; in strtoul()
92 if (acc > cutoff || acc == cutoff && c > cutlim) { in strtoul()
/external/arm-trusted-firmware/lib/libc/
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()
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()
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()
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()