1 2 3 4 5 6 7
uint Helper_MultiplyHighU32(uint x, uint y) { uint msb; uint lsb; umulExtended(x, y, msb, lsb); return msb; }