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

Function Low32Bits

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

Source from the content-addressed store, hash-verified

233}
234
235inline uint32_t Low32Bits(uint64_t value) {
236 return static_cast<uint32_t>(value);
237}
238
239inline uint32_t High32Bits(uint64_t value) {
240 return static_cast<uint32_t>(value >> 32);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected