Lines Matching refs:hi32
65 UInt hi32 = (((UInt)w3) << 16) | ((UInt)w2);
67 return mk32x2(hi32, lo32);
71 UInt hi32 = toUInt(w64 >> 32);
72 return toUShort(0xFFFF & (hi32 >> 16));
75 UInt hi32 = toUInt(w64 >> 32);
76 return toUShort(0xFFFF & hi32);
94 UInt hi32 = (((UInt)w7) << 24) | (((UInt)w6) << 16)
98 return mk32x2(hi32, lo32);
102 UInt hi32 = toUInt(w64 >> 32);
103 return toUChar(0xFF & (hi32 >> 24));
106 UInt hi32 = toUInt(w64 >> 32);
107 return toUChar(0xFF & (hi32 >> 16));
110 UInt hi32 = toUInt(w64 >> 32);
111 return toUChar(0xFF & (hi32 >> 8));
114 UInt hi32 = toUInt(w64 >> 32);
115 return toUChar(0xFF & (hi32 >> 0));