| 144 | } |
| 145 | |
| 146 | inline int64_t ReadInt64(const uint8_t *data, uint8_t byte_width) { |
| 147 | return ReadSizedScalar<int64_t, int8_t, int16_t, int32_t, int64_t>( |
| 148 | data, byte_width); |
| 149 | } |
| 150 | |
| 151 | inline uint64_t ReadUInt64(const uint8_t *data, uint8_t byte_width) { |
| 152 | // This is the "hottest" function (all offset lookups use this), so worth |