Home
last modified time | relevance | path

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

/xnu-10063.101.15/iokit/Kernel/
H A DIOStringFuncs.c130 unsigned long cutoff; in strtol() local
179 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX; in strtol()
180 cutlim = ((int)(cutoff % (unsigned long)base)); in strtol()
181 cutoff /= (unsigned long)base; in strtol()
193 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
223 unsigned long cutoff; in strtoul() local
252 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base; in strtoul()
265 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoul()
302 u_quad_t qbase, cutoff; in strtoq() local
352 cutoff = neg ? -(u_quad_t)QUAD_MIN : QUAD_MAX; in strtoq()
[all …]