MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / High16Bits

Function High16Bits

Bcore/src/main/cpp/base/bit_utils.h:231–233  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

229}
230
231inline uint16_t High16Bits(uint32_t value) {
232 return static_cast<uint16_t>(value >> 16);
233}
234
235inline uint32_t Low32Bits(uint64_t value) {
236 return static_cast<uint32_t>(value);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected