| 34 | static constexpr uint8_t kPaddingBytes[kArrowAlignment] = {0}; |
| 35 | |
| 36 | static inline int64_t PaddedLength(int64_t nbytes, int32_t alignment = kArrowAlignment) { |
| 37 | return ((nbytes + alignment - 1) / alignment) * alignment; |
| 38 | } |
| 39 | |
| 40 | } // namespace ipc |
| 41 | } // namespace arrow |
no outgoing calls
no test coverage detected