| 525 | ArrayMetadata* meta; |
| 526 | |
| 527 | Status WriteBuffer(const uint8_t* buffer, int64_t length, int64_t bit_offset) { |
| 528 | int64_t bytes_written = 0; |
| 529 | if (buffer) { |
| 530 | RETURN_NOT_OK( |
| 531 | WritePaddedWithOffset(dst, buffer, bit_offset, length, &bytes_written)); |
| 532 | } else { |
| 533 | RETURN_NOT_OK(WritePaddedBlank(dst, length, &bytes_written)); |
| 534 | } |
| 535 | meta->total_bytes += bytes_written; |
| 536 | return Status::OK(); |
| 537 | } |
| 538 | |
| 539 | template <typename T> |
| 540 | typename std::enable_if< |
nothing calls this directly
no test coverage detected