Lines Matching refs:cutoff
130 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()
353 cutlim = ((int)(cutoff % qbase)); in strtoq()
354 cutoff /= qbase; in strtoq()
366 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoq()
406 u_quad_t qbase, cutoff; in strtouq() local
435 cutoff = (u_quad_t)UQUAD_MAX / qbase; in strtouq()
448 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtouq()