Home
last modified time | relevance | path

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

/haiku/src/system/boot/arch/x86/
H A Darch_cpu.cpp136 uint64 resultMid = (low >> 32) * other; in operator *() local
137 uint64 resultLow = (low & 0xffffffff) * other + (resultMid << 32); in operator *()
139 high * other + (resultMid >> 32) in operator *()
140 + (resultLow < resultMid << 32 ? 1 : 0)); in operator *()