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

Function Low16Bits

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

Source from the content-addressed store, hash-verified

225 DCHECK(::art_lkchan::IsAlignedParam(value, alignment)) << reinterpret_cast<const void*>(value)
226
227inline uint16_t Low16Bits(uint32_t value) {
228 return static_cast<uint16_t>(value);
229}
230
231inline uint16_t High16Bits(uint32_t value) {
232 return static_cast<uint16_t>(value >> 16);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected