Home
last modified time | relevance | path

Searched refs:cutlim (Results 1 – 3 of 3) 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()