| 337 | uint16_t Cn3Block::BitOffset() const { return start_offset_ % 8; } |
| 338 | |
| 339 | uint32_t Cn3Block::ByteOffset() const { |
| 340 | return static_cast<uint32_t>(start_offset_/ 8) + |
| 341 | static_cast<uint32_t>(byte_offset_); |
| 342 | } |
| 343 | |
| 344 | void Cn3Block::ByteOffset(uint32_t byte_offset) { |
| 345 | if (byte_offset < kBitOffset) { |
no outgoing calls