MCPcopy 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
124inline uint64_t HighBits(int128_t x) {
125 return x >> 64;
126}
127inline uint64_t LowBits(int128_t x) {
128 return x & 0xffffffffffffffff;
129}

Callers 2

TESTFunction · 0.85
SetValMethod · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68