byte swapping functions */
| 475 | |
| 476 | /* byte swapping functions */ |
| 477 | static inline npy_uint16 |
| 478 | npy_bswap2(npy_uint16 x) |
| 479 | { |
| 480 | return ((x & 0xffu) << 8) | (x >> 8); |
| 481 | } |
| 482 | |
| 483 | /* |
| 484 | * treat as int16 and byteswap unaligned memory, |
no outgoing calls
no test coverage detected