| 237 | } |
| 238 | |
| 239 | inline uint32_t High32Bits(uint64_t value) { |
| 240 | return static_cast<uint32_t>(value >> 32); |
| 241 | } |
| 242 | |
| 243 | // Check whether an N-bit two's-complement representation can hold value. |
| 244 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected