Home
last modified time | relevance | path

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

/lk-master/lib/libc/
A Dstrtol.c46 long acc, cutoff; in strtol() local
93 cutoff = neg ? LONG_MIN : LONG_MAX; in strtol()
94 cutlim = cutoff % base; in strtol()
95 cutoff /= base; in strtol()
99 cutoff += 1; in strtol()
115 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtol()
125 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
A Dstrtoll.c47 long long acc, cutoff; in strtoll() local
95 cutoff = neg ? LLONG_MIN : LLONG_MAX; in strtoll()
96 cutlim = cutoff % base; in strtoll()
97 cutoff /= base; in strtoll()
101 cutoff += 1; in strtoll()
117 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
127 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()

Completed in 6 milliseconds