Lines Matching refs:cutlim
131 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
436 cutlim = ((int)((u_quad_t)UQUAD_MAX % qbase)); in strtouq()
448 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtouq()