Swap the byte order (i.e. endianness)
| 67 | |
| 68 | // Swap the byte order (i.e. endianness) |
| 69 | static inline int64_t ByteSwap(int64_t value) { return ARROW_BYTE_SWAP64(value); } |
| 70 | static inline uint64_t ByteSwap(uint64_t value) { |
| 71 | return static_cast<uint64_t>(ARROW_BYTE_SWAP64(value)); |
| 72 | } |
no outgoing calls