| 225 | DCHECK(::art_lkchan::IsAlignedParam(value, alignment)) << reinterpret_cast<const void*>(value) |
| 226 | |
| 227 | inline uint16_t Low16Bits(uint32_t value) { |
| 228 | return static_cast<uint16_t>(value); |
| 229 | } |
| 230 | |
| 231 | inline uint16_t High16Bits(uint32_t value) { |
| 232 | return static_cast<uint16_t>(value >> 16); |
nothing calls this directly
no outgoing calls
no test coverage detected