| 32 | |
| 33 | template <typename Int> |
| 34 | Int LoadInt(const uint8_t* in) { |
| 35 | return bit_util::FromLittleEndian(util::SafeLoadAs<Int>(in)); |
| 36 | } |
| 37 | |
| 38 | template<typename Uint, int kBitWidth> |
| 39 | struct ScalarUnpackerForWidth; |
nothing calls this directly
no test coverage detected