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

/darwin-on-arm/xnu/bsd/libkern/
H A Dstrtol.c115 register unsigned long cutoff; local
146 * Compute the cutoff value between legal numbers and illegal
154 * cutoff will be set to 214748364 and cutlim to either
162 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
163 cutlim = cutoff % (unsigned long)base;
164 cutoff /= (unsigned long)base;
174 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
207 register unsigned long cutoff; local
234 cutoff
[all...]
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOStringFuncs.c132 register unsigned long cutoff; local
163 * Compute the cutoff value between legal numbers and illegal
171 * cutoff will be set to 214748364 and cutlim to either
179 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
180 cutlim = cutoff % (unsigned long)base;
181 cutoff /= (unsigned long)base;
191 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim) )
224 register unsigned long cutoff; local
251 cutoff
302 register u_quad_t qbase, cutoff; local
405 register u_quad_t qbase, cutoff; local
[all...]

Completed in 18 milliseconds