Home
last modified time | relevance | path

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

/coreutils/src/
Dfactor.c2275 int lo_carry; in strto2uintmax() local
2312 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()