| 35 | int64_t in_offset; |
| 36 | |
| 37 | void CopyBitmap(uint8_t* out_bitmap, int64_t out_offset, int64_t offset, |
| 38 | int64_t length) const { |
| 39 | arrow::internal::CopyBitmap(in_bitmap, in_offset + offset, length, out_bitmap, |
| 40 | out_offset); |
| 41 | } |
| 42 | |
| 43 | void SetBit(uint8_t* out_bitmap, int64_t out_offset, int64_t offset) const { |
| 44 | bit_util::SetBitTo( |
no test coverage detected