| 428 | } |
| 429 | |
| 430 | NPY_NO_EXPORT void |
| 431 | byte_swap_vector(void *p, npy_intp n, int size) |
| 432 | { |
| 433 | _strided_byte_swap(p, (npy_intp) size, n, size); |
| 434 | return; |
| 435 | } |
| 436 | |
| 437 | /* If numitems > 1, then dst must be contiguous */ |
| 438 | NPY_NO_EXPORT void |
no test coverage detected