| 504 | } |
| 505 | |
| 506 | static inline void |
| 507 | npy_bswap4_unaligned(char * x) |
| 508 | { |
| 509 | char a = x[0]; |
| 510 | x[0] = x[3]; |
| 511 | x[3] = a; |
| 512 | a = x[1]; |
| 513 | x[1] = x[2]; |
| 514 | x[2] = a; |
| 515 | } |
| 516 | |
| 517 | static inline npy_uint64 |
| 518 | npy_bswap8(npy_uint64 x) |
no outgoing calls
no test coverage detected