| 712 | } |
| 713 | |
| 714 | uint64_t PackOffset(uint64_t page_index, uint32_t page_offset) { |
| 715 | return (page_index << 32) | page_offset; |
| 716 | } |
| 717 | |
| 718 | void UnpackOffset(uint64_t packed_offset, uint32_t* page_index, uint32_t* page_offset) { |
| 719 | *page_index = packed_offset >> 32; |
no outgoing calls
no test coverage detected