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

/haiku/src/system/libroot/posix/stdlib/
H A Dstrtoll.c56 int neg, any, cutlim; local
107 * is 10, cutoff will be set to 922337203685477580 and cutlim to
118 cutlim = cutoff % base;
131 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtol.c57 int neg, any, cutlim; local
107 * cutoff will be set to 214748364 and cutlim to either
117 cutlim = cutoff % base;
130 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoull.c56 int neg, any, cutlim; local
96 cutlim = ULLONG_MAX % base;
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c57 int neg, any, cutlim; local
97 cutlim = ULONG_MAX % base;
109 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtol.c235 register unsigned int cutlim; variable
377 cutlim = STRTOL_ULONG_MAX % (unsigned LONG int) base;
470 if (i > cutoff || (i == cutoff && c > cutlim))

Completed in 100 milliseconds