| 24 | constexpr size_t CompactOffsetTable::kElementsPerIndex; |
| 25 | |
| 26 | CompactOffsetTable::Accessor::Accessor(const uint8_t* data_begin, |
| 27 | uint32_t minimum_offset, |
| 28 | uint32_t table_offset) |
| 29 | : table_(reinterpret_cast<const uint32_t*>(data_begin + table_offset)), |
| 30 | minimum_offset_(minimum_offset), |
| 31 | data_begin_(data_begin) {} |
| 32 | |
| 33 | CompactOffsetTable::Accessor::Accessor(const uint8_t* data_begin) |
| 34 | : Accessor(data_begin + 2 * sizeof(uint32_t), |
nothing calls this directly
no outgoing calls
no test coverage detected