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

/macosx-10.5.8/xnu-1228.15.4/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...]
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOStringFuncs.c121 register unsigned long cutoff; local
152 * Compute the cutoff value between legal numbers and illegal
160 * cutoff will be set to 214748364 and cutlim to either
168 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
169 cutlim = cutoff % (unsigned long)base;
170 cutoff /= (unsigned long)base;
180 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim) )
204 register unsigned long cutoff; local
231 cutoff
272 register u_quad_t qbase, cutoff; local
365 register u_quad_t qbase, cutoff; local
[all...]

Completed in 26 milliseconds