Searched refs:resultLow (Results 1 – 1 of 1) sorted by relevance
122 uint64 resultLow = low + other.low; in operator +() local123 return uint128(resultLow, in operator +()124 high + other.high + (resultLow < low ? 1 : 0)); in operator +()129 uint64 resultLow = low - other.low; in operator -() local130 return uint128(resultLow, in operator -()131 high - other.high - (resultLow > low ? 1 : 0)); in operator -()137 uint64 resultLow = (low & 0xffffffff) * other + (resultMid << 32); in operator *() local138 return uint128(resultLow, in operator *()140 + (resultLow < resultMid << 32 ? 1 : 0)); in operator *()