| 736 | return quicksort_<npy::short_tag>((npy_short *)start, n); |
| 737 | } |
| 738 | NPY_NO_EXPORT int |
| 739 | quicksort_ushort(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 740 | { |
| 741 | if (quicksort_dispatch((npy_ushort *)start, n)) { |
| 742 | return 0; |
| 743 | } |
| 744 | return quicksort_<npy::ushort_tag>((npy_ushort *)start, n); |
| 745 | } |
| 746 | NPY_NO_EXPORT int |
| 747 | quicksort_int(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 748 | { |
nothing calls this directly
no test coverage detected