Searched refs:urest (Results 1 – 2 of 2) sorted by relevance
1275 uint32_t urest = 0xffffffffU - uleft; in CarryFrom() local1277 return (uright > urest) || in CarryFrom()1278 (carry && (((uright + 1) > urest) || (uright > (urest - 1)))); in CarryFrom()
852 unsignedT urest = std::numeric_limits<unsignedT>::max() - u1; in AddWithCarry() local853 C = (u2 > urest) || (carry_in && (((u2 + 1) > urest) || (u2 > (urest - 1)))); in AddWithCarry()