| 272 | |
| 273 | template <typename DType> |
| 274 | DType load(const uint8_t* bitmap) { |
| 275 | assert(bitmap + sizeof(DType) <= bitmap_end_); |
| 276 | return bit_util::ToLittleEndian(util::SafeLoadAs<DType>(bitmap)); |
| 277 | } |
| 278 | |
| 279 | template <typename DType> |
| 280 | void store(uint8_t* bitmap, DType data) { |
nothing calls this directly
no test coverage detected