Searched refs:lo_carry (Results 1 – 1 of 1) sorted by relevance
2275 int lo_carry; in strto2uintmax() local2312 lo_carry = (lo >> (W_TYPE_SIZE - 3)) + (lo >> (W_TYPE_SIZE - 1)); in strto2uintmax()2313 lo_carry += 10 * lo < 2 * lo; in strto2uintmax()2318 lo_carry += lo < c; in strto2uintmax()2319 hi += lo_carry; in strto2uintmax()2320 if (UNLIKELY (hi < lo_carry)) in strto2uintmax()