Home
last modified time | relevance | path

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

/xnu-12377.61.12/iokit/Kernel/
H A DIOStringFuncs.c131 int neg = 0, any, cutlim; in strtol() local
180 cutlim = ((int)(cutoff % (unsigned long)base)); in strtol()
193 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtol()
224 int neg = 0, any, cutlim; in strtoul() local
253 cutlim = ((int)((unsigned long)ULONG_MAX % (unsigned long)base)); in strtoul()
265 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoul()
303 int neg, any, cutlim; in strtoq() local
353 cutlim = ((int)(cutoff % qbase)); in strtoq()
366 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoq()
407 int neg, any, cutlim; in strtouq() local
[all …]