Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/impala
/ HighBits
Function
HighBits
be/src/runtime/multi-precision.h:124–126 ·
view source on GitHub ↗
Get the high and low bits of an int128_t
Source
from the content-addressed store, hash-verified
122
123
/// Get the high and low bits of an int128_t
124
inline uint64_t HighBits(int128_t x) {
125
return x >> 64;
126
}
127
inline uint64_t LowBits(int128_t x) {
128
return x & 0xffffffffffffffff;
129
}
Callers
2
TEST
Function · 0.85
SetVal
Method · 0.85
Calls
no outgoing calls
Tested by
1
TEST
Function · 0.68