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

/darwin-on-arm/xnu/bsd/libkern/
H A Dstrtol.c116 register int neg = 0, any, cutlim; local
154 * cutoff will be set to 214748364 and cutlim to either
163 cutlim = cutoff % (unsigned long)base;
174 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
208 register int neg = 0, any, cutlim; local
235 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
245 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOStringFuncs.c133 register int neg = 0, any, cutlim; local
171 * cutoff will be set to 214748364 and cutlim to either
180 cutlim = cutoff % (unsigned long)base;
191 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim) )
225 register int neg = 0, any, cutlim; local
252 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
262 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim) )
303 register int neg, any, cutlim; local
340 * is 10, cutoff will be set to 922337203685477580 and cutlim to
351 cutlim
406 register int neg, any, cutlim; local
[all...]

Completed in 22 milliseconds