Searched refs:cutoff (Results 1 – 1 of 1) sorted by relevance
130 unsigned long cutoff; in strtol() local179 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() local252 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() local352 cutoff = neg ? -(u_quad_t)QUAD_MIN : QUAD_MAX; in strtoq()[all …]