Home
last modified time | relevance | path

Searched refs:cutoff (Results 1 – 2 of 2) sorted by relevance

/libtiff-4.0.7/port/
H A Dstrtoul.c52 unsigned long acc, cutoff; in strtoul() local
80 cutoff = ULONG_MAX / (unsigned long)base; in strtoul()
93 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoul()
H A Dstrtoull.c51 unsigned long long cutoff; in strtoull() local
84 cutoff = ULLONG_MAX / base; in strtoull()
97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()