Home
last modified time | relevance | path

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

/haiku/src/system/boot/arch/x86/
H A Darch_cpu.cpp122 uint64 resultLow = low + other.low; in operator +() local
123 return uint128(resultLow, in operator +()
124 high + other.high + (resultLow < low ? 1 : 0)); in operator +()
129 uint64 resultLow = low - other.low; in operator -() local
130 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 *() local
138 return uint128(resultLow, in operator *()
140 + (resultLow < resultMid << 32 ? 1 : 0)); in operator *()