| 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 | { |
| 749 | if (quicksort_dispatch((npy_int *)start, n)) { |
| 750 | return 0; |
| 751 | } |
| 752 | return quicksort_<npy::int_tag>((npy_int *)start, n); |
| 753 | } |
| 754 | NPY_NO_EXPORT int |
| 755 | quicksort_uint(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 756 | { |
nothing calls this directly
no test coverage detected