Home
last modified time | relevance | path

Searched refs:cutlim (Results 1 - 3 of 3) sorted by relevance

/third_party/FreeBSD/lib/libc/stdlib/
H A Dstrtoimax.c62 int neg, any, cutlim; in strtoimax_l() local
109 * is 10, cutoff will be set to 922337203685477580 and cutlim to in strtoimax_l()
120 cutlim = cutoff % base; in strtoimax_l()
135 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoimax_l()
H A Dstrtoumax.c62 int neg, any, cutlim; in strtoumax_l() local
99 cutlim = UINTMAX_MAX % base; in strtoumax_l()
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoumax_l()
H A Dstrtoul.c62 int neg, any, cutlim; in strtoul_l() local
99 cutlim = ULONG_MAX % base; in strtoul_l()
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoul_l()

Completed in 1 milliseconds