Home
last modified time | relevance | path

Searched refs:cutlim (Results 1 – 4 of 4) 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()
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()
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()
/external/bison/lib/
Dstrtol.c243 register unsigned int cutlim; in INTERNAL() local
346 cutlim = STRTOL_ULONG_MAX % (unsigned LONG int) base; in INTERNAL()
363 if (i > cutoff || (i == cutoff && c > cutlim)) in INTERNAL()