| 118 | } |
| 119 | |
| 120 | void SetBitmap(uint8_t* data, int64_t offset, int64_t length) { |
| 121 | SetBitmapImpl<true>(data, offset, length); |
| 122 | } |
| 123 | |
| 124 | void ClearBitmap(uint8_t* data, int64_t offset, int64_t length) { |
| 125 | SetBitmapImpl<false>(data, offset, length); |
no outgoing calls